[PATCH] kstrtox: simpler code in _kstrtoull()

From: Alexey Dobriyan
Date: Thu Mar 24 2011 - 14:52:35 EST


Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>
---

lib/kstrtox.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)

--- a/lib/kstrtox.c
+++ b/lib/kstrtox.c
@@ -49,12 +49,9 @@ static int _kstrtoull(const char *s, unsigned int base, unsigned long long *res)
val = *s - '0';
else if ('a' <= _tolower(*s) && _tolower(*s) <= 'f')
val = _tolower(*s) - 'a' + 10;
- else if (*s == '\n') {
- if (*(s + 1) == '\0')
- break;
- else
- return -EINVAL;
- } else
+ else if (*s == '\n' && *(s + 1) == '\0')
+ break;
+ else
return -EINVAL;

if (val >= base)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/