diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-08-31 13:48:16 +1000 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-08-31 17:30:14 -1000 |
commit | 1a37f184fa7824982a5f434c06981ec46a66cef7 (patch) | |
tree | 1734583c46c40e2ae599fa1e4be18c44aba1ed60 | |
parent | 60c3be387bb6cd39707d3ec0ebc324a0c96181f8 (diff) | |
download | linux-3.10-1a37f184fa7824982a5f434c06981ec46a66cef7.tar.gz linux-3.10-1a37f184fa7824982a5f434c06981ec46a66cef7.tar.bz2 linux-3.10-1a37f184fa7824982a5f434c06981ec46a66cef7.zip |
lmb: Also remove __init from lmb_end_of_RAM() declaration in lmb.h
My previous patch (commit 4f8ee2c9cc: "lmb: Remove __init from
lmb_end_of_DRAM()") removed __init in lmb.c but missed the fact that it
was also marked as such in the .h
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/lmb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/lmb.h b/include/linux/lmb.h index c46c89505da..2442e3f3d03 100644 --- a/include/linux/lmb.h +++ b/include/linux/lmb.h @@ -51,7 +51,7 @@ extern u64 __init lmb_alloc_base(u64 size, extern u64 __init __lmb_alloc_base(u64 size, u64 align, u64 max_addr); extern u64 __init lmb_phys_mem_size(void); -extern u64 __init lmb_end_of_DRAM(void); +extern u64 lmb_end_of_DRAM(void); extern void __init lmb_enforce_memory_limit(u64 memory_limit); extern int __init lmb_is_reserved(u64 addr); extern int lmb_find(struct lmb_property *res); |