kernel: fix section mismatch in crashlog
The function memblock_insert_region() is in the section __init_memblock, also put crashlog_init_memblock there. This fixes this section mismatch warning: The function memblock_insert_region.isra.1() references the function __meminit crashlog_init_memblock(). This is often because memblock_insert_region.isra.1 lacks a __meminit annotation or the annotation of crashlog_init_memblock is wrong. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 48931
This commit is contained in:
parent
837d4f8f41
commit
21cf64b4ad
@ -121,7 +121,7 @@
|
||||
+#endif
|
||||
+
|
||||
+#ifdef CONFIG_HAVE_MEMBLOCK
|
||||
+void __meminit crashlog_init_memblock(phys_addr_t addr, phys_addr_t size)
|
||||
+void __init_memblock crashlog_init_memblock(phys_addr_t addr, phys_addr_t size)
|
||||
+{
|
||||
+ if (crashlog_addr)
|
||||
+ return;
|
||||
|
@ -121,7 +121,7 @@
|
||||
+#endif
|
||||
+
|
||||
+#ifdef CONFIG_HAVE_MEMBLOCK
|
||||
+void __meminit crashlog_init_memblock(phys_addr_t addr, phys_addr_t size)
|
||||
+void __init_memblock crashlog_init_memblock(phys_addr_t addr, phys_addr_t size)
|
||||
+{
|
||||
+ if (crashlog_addr)
|
||||
+ return;
|
||||
|
@ -121,7 +121,7 @@
|
||||
+#endif
|
||||
+
|
||||
+#ifdef CONFIG_HAVE_MEMBLOCK
|
||||
+void __meminit crashlog_init_memblock(phys_addr_t addr, phys_addr_t size)
|
||||
+void __init_memblock crashlog_init_memblock(phys_addr_t addr, phys_addr_t size)
|
||||
+{
|
||||
+ if (crashlog_addr)
|
||||
+ return;
|
||||
|
@ -121,7 +121,7 @@
|
||||
+#endif
|
||||
+
|
||||
+#ifdef CONFIG_HAVE_MEMBLOCK
|
||||
+void __meminit crashlog_init_memblock(phys_addr_t addr, phys_addr_t size)
|
||||
+void __init_memblock crashlog_init_memblock(phys_addr_t addr, phys_addr_t size)
|
||||
+{
|
||||
+ if (crashlog_addr)
|
||||
+ return;
|
||||
|
Loading…
Reference in New Issue
Block a user