Commit 8446196a authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Paul Mackerras

[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: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent b07dfab3
...@@ -40,7 +40,7 @@ MODULE_VERSION(HVCS_ARCH_VERSION); ...@@ -40,7 +40,7 @@ MODULE_VERSION(HVCS_ARCH_VERSION);
* functions aren't performance sensitive, so this conversion isn't an * functions aren't performance sensitive, so this conversion isn't an
* issue. * issue.
*/ */
int hvcs_convert(long to_convert) static int hvcs_convert(long to_convert)
{ {
switch (to_convert) { switch (to_convert) {
case H_Success: case H_Success:
...@@ -91,7 +91,7 @@ int hvcs_free_partner_info(struct list_head *head) ...@@ -91,7 +91,7 @@ int hvcs_free_partner_info(struct list_head *head)
EXPORT_SYMBOL(hvcs_free_partner_info); EXPORT_SYMBOL(hvcs_free_partner_info);
/* Helper function for hvcs_get_partner_info */ /* Helper function for hvcs_get_partner_info */
int hvcs_next_partner(uint32_t unit_address, static int hvcs_next_partner(uint32_t unit_address,
unsigned long last_p_partition_ID, unsigned long last_p_partition_ID,
unsigned long last_p_unit_address, unsigned long *pi_buff) unsigned long last_p_unit_address, unsigned long *pi_buff)
......
...@@ -51,8 +51,6 @@ ...@@ -51,8 +51,6 @@
#define DBG(fmt...) #define DBG(fmt...)
extern int is_python(struct device_node *);
static void tce_build_pSeries(struct iommu_table *tbl, long index, static void tce_build_pSeries(struct iommu_table *tbl, long index,
long npages, unsigned long uaddr, long npages, unsigned long uaddr,
enum dma_data_direction direction) enum dma_data_direction direction)
......
...@@ -192,7 +192,7 @@ struct file_operations scanlog_fops = { ...@@ -192,7 +192,7 @@ struct file_operations scanlog_fops = {
.release = scanlog_release, .release = scanlog_release,
}; };
int __init scanlog_init(void) static int __init scanlog_init(void)
{ {
struct proc_dir_entry *ent; struct proc_dir_entry *ent;
...@@ -222,7 +222,7 @@ int __init scanlog_init(void) ...@@ -222,7 +222,7 @@ int __init scanlog_init(void)
return 0; return 0;
} }
void __exit scanlog_cleanup(void) static void __exit scanlog_cleanup(void)
{ {
if (proc_ppc64_scan_log_dump) { if (proc_ppc64_scan_log_dump) {
kfree(proc_ppc64_scan_log_dump->data); kfree(proc_ppc64_scan_log_dump->data);
......
...@@ -86,7 +86,7 @@ static void pseries_dedicated_idle(void); ...@@ -86,7 +86,7 @@ static void pseries_dedicated_idle(void);
struct mpic *pSeries_mpic; struct mpic *pSeries_mpic;
void pSeries_show_cpuinfo(struct seq_file *m) static void pSeries_show_cpuinfo(struct seq_file *m)
{ {
struct device_node *root; struct device_node *root;
const char *model = ""; const char *model = "";
......
...@@ -93,7 +93,7 @@ static int query_cpu_stopped(unsigned int pcpu) ...@@ -93,7 +93,7 @@ static int query_cpu_stopped(unsigned int pcpu)
return cpu_status; return cpu_status;
} }
int pSeries_cpu_disable(void) static int pSeries_cpu_disable(void)
{ {
int cpu = smp_processor_id(); int cpu = smp_processor_id();
...@@ -109,7 +109,7 @@ int pSeries_cpu_disable(void) ...@@ -109,7 +109,7 @@ int pSeries_cpu_disable(void)
return 0; return 0;
} }
void pSeries_cpu_die(unsigned int cpu) static void pSeries_cpu_die(unsigned int cpu)
{ {
int tries; int tries;
int cpu_status; int cpu_status;
......
...@@ -381,7 +381,7 @@ int xics_get_irq(struct pt_regs *regs) ...@@ -381,7 +381,7 @@ int xics_get_irq(struct pt_regs *regs)
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
irqreturn_t xics_ipi_action(int irq, void *dev_id, struct pt_regs *regs) static irqreturn_t xics_ipi_action(int irq, void *dev_id, struct pt_regs *regs)
{ {
int cpu = smp_processor_id(); int cpu = smp_processor_id();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment