diff options
-rw-r--r-- | include/linux/kernel.h | 2 | ||||
-rw-r--r-- | lib/cmdline.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index fdbbf72ca2eb..7889c2f9b75d 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -176,7 +176,7 @@ extern int vsscanf(const char *, const char *, va_list) | |||
176 | 176 | ||
177 | extern int get_option(char **str, int *pint); | 177 | extern int get_option(char **str, int *pint); |
178 | extern char *get_options(const char *str, int nints, int *ints); | 178 | extern char *get_options(const char *str, int nints, int *ints); |
179 | extern unsigned long long memparse(char *ptr, char **retptr); | 179 | extern unsigned long long memparse(const char *ptr, char **retptr); |
180 | 180 | ||
181 | extern int core_kernel_text(unsigned long addr); | 181 | extern int core_kernel_text(unsigned long addr); |
182 | extern int __kernel_text_address(unsigned long addr); | 182 | extern int __kernel_text_address(unsigned long addr); |
diff --git a/lib/cmdline.c b/lib/cmdline.c index 5ba8a942a478..f5f3ad8b62ff 100644 --- a/lib/cmdline.c +++ b/lib/cmdline.c | |||
@@ -126,7 +126,7 @@ char *get_options(const char *str, int nints, int *ints) | |||
126 | * megabyte, or one gigabyte, respectively. | 126 | * megabyte, or one gigabyte, respectively. |
127 | */ | 127 | */ |
128 | 128 | ||
129 | unsigned long long memparse(char *ptr, char **retptr) | 129 | unsigned long long memparse(const char *ptr, char **retptr) |
130 | { | 130 | { |
131 | char *endptr; /* local pointer to end of parsed string */ | 131 | char *endptr; /* local pointer to end of parsed string */ |
132 | 132 | ||