diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2018-12-28 00:36:03 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-12-28 12:11:48 -0800 |
commit | e5cb113f2dbc8125f31005faebab161a2a84ebe6 (patch) | |
tree | 66317fd8b28dcbe4cdaac624edec6d3ae6a9aab5 /include/linux/mm.h | |
parent | 9a2f45ff320287d49a3cd90ce68cb58a6da6f5e1 (diff) | |
download | blackbird-op-linux-e5cb113f2dbc8125f31005faebab161a2a84ebe6.tar.gz blackbird-op-linux-e5cb113f2dbc8125f31005faebab161a2a84ebe6.zip |
mm: make free_reserved_area() return "const char *"
and propagate through down the call stack.
Link: http://lkml.kernel.org/r/20181124091411.GC10969@avx2
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r-- | include/linux/mm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 031b2ce983f9..9963f77f1101 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -2108,7 +2108,7 @@ extern void free_initmem(void); * Return pages freed into the buddy system. */ extern unsigned long free_reserved_area(void *start, void *end, - int poison, char *s); + int poison, const char *s); #ifdef CONFIG_HIGHMEM /* |