aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2013-06-25 15:15:24 -0400
committerGeert Uytterhoeven <geert@linux-m68k.org>2013-11-26 05:08:54 -0500
commita4df02a217e9787a4b967197d9d9030c3e3c1088 (patch)
tree4f32cbd30553494fa55d1cf2ecf294265196dc69
parent6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae (diff)
m68k: Mark functions only called from setup_arch() __init
Some functions that are only called (indirectly) from setup_arch() lack __init annotations. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
-rw-r--r--arch/m68k/amiga/config.c2
-rw-r--r--arch/m68k/apollo/config.c10
-rw-r--r--arch/m68k/bvme6000/config.c2
-rw-r--r--arch/m68k/emu/natfeat.c3
-rw-r--r--arch/m68k/kernel/setup_mm.c4
-rw-r--r--arch/m68k/mac/psc.c2
-rw-r--r--arch/m68k/mvme147/config.c2
-rw-r--r--arch/m68k/mvme16x/config.c2
-rw-r--r--arch/m68k/q40/config.c4
-rw-r--r--arch/m68k/sun3/dvma.c6
-rw-r--r--arch/m68k/sun3/mmu_emu.c3
-rw-r--r--arch/m68k/sun3/sun3dvma.c3
12 files changed, 22 insertions, 21 deletions
diff --git a/arch/m68k/amiga/config.c b/arch/m68k/amiga/config.c
index b819390e29cd..93ab423758da 100644
--- a/arch/m68k/amiga/config.c
+++ b/arch/m68k/amiga/config.c
@@ -140,7 +140,7 @@ static struct resource ram_resource[NUM_MEMINFO];
140 * Parse an Amiga-specific record in the bootinfo 140 * Parse an Amiga-specific record in the bootinfo
141 */ 141 */
142 142
143int amiga_parse_bootinfo(const struct bi_record *record) 143int __init amiga_parse_bootinfo(const struct bi_record *record)
144{ 144{
145 int unknown = 0; 145 int unknown = 0;
146 const unsigned long *data = record->data; 146 const unsigned long *data = record->data;
diff --git a/arch/m68k/apollo/config.c b/arch/m68k/apollo/config.c
index 3ea56b90e718..2bdde9685a29 100644
--- a/arch/m68k/apollo/config.c
+++ b/arch/m68k/apollo/config.c
@@ -1,3 +1,4 @@
1#include <linux/init.h>
1#include <linux/types.h> 2#include <linux/types.h>
2#include <linux/kernel.h> 3#include <linux/kernel.h>
3#include <linux/mm.h> 4#include <linux/mm.h>
@@ -43,8 +44,8 @@ static const char *apollo_models[] = {
43 [APOLLO_DN4500-APOLLO_DN3000] = "DN4500 (Roadrunner)" 44 [APOLLO_DN4500-APOLLO_DN3000] = "DN4500 (Roadrunner)"
44}; 45};
45 46
46int apollo_parse_bootinfo(const struct bi_record *record) { 47int __init apollo_parse_bootinfo(const struct bi_record *record)
47 48{
48 int unknown = 0; 49 int unknown = 0;
49 const unsigned long *data = record->data; 50 const unsigned long *data = record->data;
50 51
@@ -60,9 +61,8 @@ int apollo_parse_bootinfo(const struct bi_record *record) {
60 return unknown; 61 return unknown;
61} 62}
62 63
63void dn_setup_model(void) { 64static void __init dn_setup_model(void)
64 65{
65
66 printk("Apollo hardware found: "); 66 printk("Apollo hardware found: ");
67 printk("[%s]\n", apollo_models[apollo_model - APOLLO_DN3000]); 67 printk("[%s]\n", apollo_models[apollo_model - APOLLO_DN3000]);
68 68
diff --git a/arch/m68k/bvme6000/config.c b/arch/m68k/bvme6000/config.c
index 8943aa4c18e6..1b9e31e0130f 100644
--- a/arch/m68k/bvme6000/config.c
+++ b/arch/m68k/bvme6000/config.c
@@ -50,7 +50,7 @@ void bvme6000_set_vectors (void);
50static irq_handler_t tick_handler; 50static irq_handler_t tick_handler;
51 51
52 52
53int bvme6000_parse_bootinfo(const struct bi_record *bi) 53int __init bvme6000_parse_bootinfo(const struct bi_record *bi)
54{ 54{
55 if (bi->tag == BI_VME_TYPE) 55 if (bi->tag == BI_VME_TYPE)
56 return 0; 56 return 0;
diff --git a/arch/m68k/emu/natfeat.c b/arch/m68k/emu/natfeat.c
index 121a6660ad4e..71b78ecee75c 100644
--- a/arch/m68k/emu/natfeat.c
+++ b/arch/m68k/emu/natfeat.c
@@ -9,6 +9,7 @@
9 * the GNU General Public License (GPL), incorporated herein by reference. 9 * the GNU General Public License (GPL), incorporated herein by reference.
10 */ 10 */
11 11
12#include <linux/init.h>
12#include <linux/types.h> 13#include <linux/types.h>
13#include <linux/console.h> 14#include <linux/console.h>
14#include <linux/string.h> 15#include <linux/string.h>
@@ -70,7 +71,7 @@ static void nf_poweroff(void)
70 nf_call(id); 71 nf_call(id);
71} 72}
72 73
73void nf_init(void) 74void __init nf_init(void)
74{ 75{
75 unsigned long id, version; 76 unsigned long id, version;
76 char buf[256]; 77 char buf[256];
diff --git a/arch/m68k/kernel/setup_mm.c b/arch/m68k/kernel/setup_mm.c
index e67e53159573..99aa9887d5a8 100644
--- a/arch/m68k/kernel/setup_mm.c
+++ b/arch/m68k/kernel/setup_mm.c
@@ -74,9 +74,9 @@ unsigned long m68k_memoffset;
74struct mem_info m68k_memory[NUM_MEMINFO]; 74struct mem_info m68k_memory[NUM_MEMINFO];
75EXPORT_SYMBOL(m68k_memory); 75EXPORT_SYMBOL(m68k_memory);
76 76
77struct mem_info m68k_ramdisk; 77static struct mem_info m68k_ramdisk __initdata;
78 78
79static char m68k_command_line[CL_SIZE]; 79static char m68k_command_line[CL_SIZE] __initdata;
80 80
81void (*mach_sched_init) (irq_handler_t handler) __initdata = NULL; 81void (*mach_sched_init) (irq_handler_t handler) __initdata = NULL;
82/* machine dependent irq functions */ 82/* machine dependent irq functions */
diff --git a/arch/m68k/mac/psc.c b/arch/m68k/mac/psc.c
index 6f026fc302fa..cc9f3f097be7 100644
--- a/arch/m68k/mac/psc.c
+++ b/arch/m68k/mac/psc.c
@@ -54,7 +54,7 @@ static void psc_debug_dump(void)
54 * expanded to cover what I think are the other 7 channels. 54 * expanded to cover what I think are the other 7 channels.
55 */ 55 */
56 56
57static void psc_dma_die_die_die(void) 57static __init void psc_dma_die_die_die(void)
58{ 58{
59 int i; 59 int i;
60 60
diff --git a/arch/m68k/mvme147/config.c b/arch/m68k/mvme147/config.c
index 1c6262803b94..5c99154c67c8 100644
--- a/arch/m68k/mvme147/config.c
+++ b/arch/m68k/mvme147/config.c
@@ -51,7 +51,7 @@ static int bcd2int (unsigned char b);
51irq_handler_t tick_handler; 51irq_handler_t tick_handler;
52 52
53 53
54int mvme147_parse_bootinfo(const struct bi_record *bi) 54int __init mvme147_parse_bootinfo(const struct bi_record *bi)
55{ 55{
56 if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO) 56 if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO)
57 return 0; 57 return 0;
diff --git a/arch/m68k/mvme16x/config.c b/arch/m68k/mvme16x/config.c
index 080a342458a1..60d8a1bc837d 100644
--- a/arch/m68k/mvme16x/config.c
+++ b/arch/m68k/mvme16x/config.c
@@ -60,7 +60,7 @@ unsigned short mvme16x_config;
60EXPORT_SYMBOL(mvme16x_config); 60EXPORT_SYMBOL(mvme16x_config);
61 61
62 62
63int mvme16x_parse_bootinfo(const struct bi_record *bi) 63int __init mvme16x_parse_bootinfo(const struct bi_record *bi)
64{ 64{
65 if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO) 65 if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO)
66 return 0; 66 return 0;
diff --git a/arch/m68k/q40/config.c b/arch/m68k/q40/config.c
index 078bb744b5fe..e90fe903613e 100644
--- a/arch/m68k/q40/config.c
+++ b/arch/m68k/q40/config.c
@@ -154,7 +154,7 @@ static unsigned int serports[] =
154 0x3f8,0x2f8,0x3e8,0x2e8,0 154 0x3f8,0x2f8,0x3e8,0x2e8,0
155}; 155};
156 156
157static void q40_disable_irqs(void) 157static void __init q40_disable_irqs(void)
158{ 158{
159 unsigned i, j; 159 unsigned i, j;
160 160
@@ -198,7 +198,7 @@ void __init config_q40(void)
198} 198}
199 199
200 200
201int q40_parse_bootinfo(const struct bi_record *rec) 201int __init q40_parse_bootinfo(const struct bi_record *rec)
202{ 202{
203 return 1; 203 return 1;
204} 204}
diff --git a/arch/m68k/sun3/dvma.c b/arch/m68k/sun3/dvma.c
index d522eaab4551..d95506e06c2a 100644
--- a/arch/m68k/sun3/dvma.c
+++ b/arch/m68k/sun3/dvma.c
@@ -7,6 +7,7 @@
7 * 7 *
8 */ 8 */
9 9
10#include <linux/init.h>
10#include <linux/kernel.h> 11#include <linux/kernel.h>
11#include <linux/mm.h> 12#include <linux/mm.h>
12#include <linux/bootmem.h> 13#include <linux/bootmem.h>
@@ -62,10 +63,7 @@ int dvma_map_iommu(unsigned long kaddr, unsigned long baddr,
62 63
63} 64}
64 65
65void sun3_dvma_init(void) 66void __init sun3_dvma_init(void)
66{ 67{
67
68 memset(ptelist, 0, sizeof(ptelist)); 68 memset(ptelist, 0, sizeof(ptelist));
69
70
71} 69}
diff --git a/arch/m68k/sun3/mmu_emu.c b/arch/m68k/sun3/mmu_emu.c
index 8edc510a21be..3f258e230ba5 100644
--- a/arch/m68k/sun3/mmu_emu.c
+++ b/arch/m68k/sun3/mmu_emu.c
@@ -6,6 +6,7 @@
6** Started 1/16/98 @ 2:22 am 6** Started 1/16/98 @ 2:22 am
7*/ 7*/
8 8
9#include <linux/init.h>
9#include <linux/mman.h> 10#include <linux/mman.h>
10#include <linux/mm.h> 11#include <linux/mm.h>
11#include <linux/kernel.h> 12#include <linux/kernel.h>
@@ -122,7 +123,7 @@ void print_pte_vaddr (unsigned long vaddr)
122/* 123/*
123 * Initialise the MMU emulator. 124 * Initialise the MMU emulator.
124 */ 125 */
125void mmu_emu_init(unsigned long bootmem_end) 126void __init mmu_emu_init(unsigned long bootmem_end)
126{ 127{
127 unsigned long seg, num; 128 unsigned long seg, num;
128 int i,j; 129 int i,j;
diff --git a/arch/m68k/sun3/sun3dvma.c b/arch/m68k/sun3/sun3dvma.c
index cab54482ca34..ca57966ec3a2 100644
--- a/arch/m68k/sun3/sun3dvma.c
+++ b/arch/m68k/sun3/sun3dvma.c
@@ -6,6 +6,7 @@
6 * Contains common routines for sun3/sun3x DVMA management. 6 * Contains common routines for sun3/sun3x DVMA management.
7 */ 7 */
8 8
9#include <linux/init.h>
9#include <linux/module.h> 10#include <linux/module.h>
10#include <linux/kernel.h> 11#include <linux/kernel.h>
11#include <linux/gfp.h> 12#include <linux/gfp.h>
@@ -245,7 +246,7 @@ static inline int free_baddr(unsigned long baddr)
245 246
246} 247}
247 248
248void dvma_init(void) 249void __init dvma_init(void)
249{ 250{
250 251
251 struct hole *hole; 252 struct hole *hole;