aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/boot/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/boot/string.c')
-rw-r--r--arch/x86/boot/string.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/x86/boot/string.c b/arch/x86/boot/string.c
index aba29df4a7bb..3cbc4058dd26 100644
--- a/arch/x86/boot/string.c
+++ b/arch/x86/boot/string.c
@@ -68,10 +68,32 @@ unsigned int atou(const char *s)
68/* Works only for digits and letters, but small and fast */ 68/* Works only for digits and letters, but small and fast */
69#define TOLOWER(x) ((x) | 0x20) 69#define TOLOWER(x) ((x) | 0x20)
70 70
71static unsigned int simple_guess_base(const char *cp)
72{
73 if (cp[0] == '0') {
74 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2]))
75 return 16;
76 else
77 return 8;
78 } else {
79 return 10;
80 }
81}
82
83/**
84 * simple_strtoull - convert a string to an unsigned long long
85 * @cp: The start of the string
86 * @endp: A pointer to the end of the parsed string will be placed here
87 * @base: The number base to use
88 */
89
71unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base) 90unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
72{ 91{
73 unsigned long long result = 0; 92 unsigned long long result = 0;
74 93
94 if (!base)
95 base = simple_guess_base(cp);
96
75 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') 97 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
76 cp += 2; 98 cp += 2;
77 99