diff options
author | Arnd Bergmann <arnd@arndb.de> | 2006-01-10 19:00:02 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-12 04:39:13 -0500 |
commit | 8446196ade39befe68f60cfae49c43b94a1144fc (patch) | |
tree | 5b246a1c926687228a62dabe7202c2284d278592 /arch | |
parent | b07dfab3e329955c218cd1d06efdb133c5c18ecd (diff) |
[PATCH] powerpc: pseries namespace cleanup
These symbols are only used in the file that they are defined in,
so they should not be in the global namespace.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/pseries/hvcserver.c | 4 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/iommu.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/scanlog.c | 4 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/setup.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/smp.c | 4 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/xics.c | 2 |
6 files changed, 8 insertions, 10 deletions
diff --git a/arch/powerpc/platforms/pseries/hvcserver.c b/arch/powerpc/platforms/pseries/hvcserver.c index 4d584172055a..22bfb5c89db9 100644 --- a/arch/powerpc/platforms/pseries/hvcserver.c +++ b/arch/powerpc/platforms/pseries/hvcserver.c | |||
@@ -40,7 +40,7 @@ MODULE_VERSION(HVCS_ARCH_VERSION); | |||
40 | * functions aren't performance sensitive, so this conversion isn't an | 40 | * functions aren't performance sensitive, so this conversion isn't an |
41 | * issue. | 41 | * issue. |
42 | */ | 42 | */ |
43 | int hvcs_convert(long to_convert) | 43 | static int hvcs_convert(long to_convert) |
44 | { | 44 | { |
45 | switch (to_convert) { | 45 | switch (to_convert) { |
46 | case H_Success: | 46 | case H_Success: |
@@ -91,7 +91,7 @@ int hvcs_free_partner_info(struct list_head *head) | |||
91 | EXPORT_SYMBOL(hvcs_free_partner_info); | 91 | EXPORT_SYMBOL(hvcs_free_partner_info); |
92 | 92 | ||
93 | /* Helper function for hvcs_get_partner_info */ | 93 | /* Helper function for hvcs_get_partner_info */ |
94 | int hvcs_next_partner(uint32_t unit_address, | 94 | static int hvcs_next_partner(uint32_t unit_address, |
95 | unsigned long last_p_partition_ID, | 95 | unsigned long last_p_partition_ID, |
96 | unsigned long last_p_unit_address, unsigned long *pi_buff) | 96 | unsigned long last_p_unit_address, unsigned long *pi_buff) |
97 | 97 | ||
diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platforms/pseries/iommu.c index 169f9148789c..48cfbfc43f99 100644 --- a/arch/powerpc/platforms/pseries/iommu.c +++ b/arch/powerpc/platforms/pseries/iommu.c | |||
@@ -51,8 +51,6 @@ | |||
51 | 51 | ||
52 | #define DBG(fmt...) | 52 | #define DBG(fmt...) |
53 | 53 | ||
54 | extern int is_python(struct device_node *); | ||
55 | |||
56 | static void tce_build_pSeries(struct iommu_table *tbl, long index, | 54 | static void tce_build_pSeries(struct iommu_table *tbl, long index, |
57 | long npages, unsigned long uaddr, | 55 | long npages, unsigned long uaddr, |
58 | enum dma_data_direction direction) | 56 | enum dma_data_direction direction) |
diff --git a/arch/powerpc/platforms/pseries/scanlog.c b/arch/powerpc/platforms/pseries/scanlog.c index 2edc947f7c44..50643496eb63 100644 --- a/arch/powerpc/platforms/pseries/scanlog.c +++ b/arch/powerpc/platforms/pseries/scanlog.c | |||
@@ -192,7 +192,7 @@ struct file_operations scanlog_fops = { | |||
192 | .release = scanlog_release, | 192 | .release = scanlog_release, |
193 | }; | 193 | }; |
194 | 194 | ||
195 | int __init scanlog_init(void) | 195 | static int __init scanlog_init(void) |
196 | { | 196 | { |
197 | struct proc_dir_entry *ent; | 197 | struct proc_dir_entry *ent; |
198 | 198 | ||
@@ -222,7 +222,7 @@ int __init scanlog_init(void) | |||
222 | return 0; | 222 | return 0; |
223 | } | 223 | } |
224 | 224 | ||
225 | void __exit scanlog_cleanup(void) | 225 | static void __exit scanlog_cleanup(void) |
226 | { | 226 | { |
227 | if (proc_ppc64_scan_log_dump) { | 227 | if (proc_ppc64_scan_log_dump) { |
228 | kfree(proc_ppc64_scan_log_dump->data); | 228 | kfree(proc_ppc64_scan_log_dump->data); |
diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c index 8903cf63236a..68b7f086d63d 100644 --- a/arch/powerpc/platforms/pseries/setup.c +++ b/arch/powerpc/platforms/pseries/setup.c | |||
@@ -86,7 +86,7 @@ static void pseries_dedicated_idle(void); | |||
86 | 86 | ||
87 | struct mpic *pSeries_mpic; | 87 | struct mpic *pSeries_mpic; |
88 | 88 | ||
89 | void pSeries_show_cpuinfo(struct seq_file *m) | 89 | static void pSeries_show_cpuinfo(struct seq_file *m) |
90 | { | 90 | { |
91 | struct device_node *root; | 91 | struct device_node *root; |
92 | const char *model = ""; | 92 | const char *model = ""; |
diff --git a/arch/powerpc/platforms/pseries/smp.c b/arch/powerpc/platforms/pseries/smp.c index 25181c594d73..e4d017dd5ef3 100644 --- a/arch/powerpc/platforms/pseries/smp.c +++ b/arch/powerpc/platforms/pseries/smp.c | |||
@@ -93,7 +93,7 @@ static int query_cpu_stopped(unsigned int pcpu) | |||
93 | return cpu_status; | 93 | return cpu_status; |
94 | } | 94 | } |
95 | 95 | ||
96 | int pSeries_cpu_disable(void) | 96 | static int pSeries_cpu_disable(void) |
97 | { | 97 | { |
98 | int cpu = smp_processor_id(); | 98 | int cpu = smp_processor_id(); |
99 | 99 | ||
@@ -109,7 +109,7 @@ int pSeries_cpu_disable(void) | |||
109 | return 0; | 109 | return 0; |
110 | } | 110 | } |
111 | 111 | ||
112 | void pSeries_cpu_die(unsigned int cpu) | 112 | static void pSeries_cpu_die(unsigned int cpu) |
113 | { | 113 | { |
114 | int tries; | 114 | int tries; |
115 | int cpu_status; | 115 | int cpu_status; |
diff --git a/arch/powerpc/platforms/pseries/xics.c b/arch/powerpc/platforms/pseries/xics.c index 0c0cfa32eb58..fd823c7c9ac8 100644 --- a/arch/powerpc/platforms/pseries/xics.c +++ b/arch/powerpc/platforms/pseries/xics.c | |||
@@ -381,7 +381,7 @@ int xics_get_irq(struct pt_regs *regs) | |||
381 | 381 | ||
382 | #ifdef CONFIG_SMP | 382 | #ifdef CONFIG_SMP |
383 | 383 | ||
384 | irqreturn_t xics_ipi_action(int irq, void *dev_id, struct pt_regs *regs) | 384 | static irqreturn_t xics_ipi_action(int irq, void *dev_id, struct pt_regs *regs) |
385 | { | 385 | { |
386 | int cpu = smp_processor_id(); | 386 | int cpu = smp_processor_id(); |
387 | 387 | ||