[POWERPC] 85xx: Marked functions static

Marked a number of functions in 85xx board code as static.  Also, some minor
whitespace cleanup

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
Kumar Gala 2007-02-09 09:30:45 -06:00
Родитель 8dabba5d1a
Коммит 27630bec94
2 изменённых файлов: 8 добавлений и 16 удалений

Просмотреть файл

@ -45,8 +45,7 @@ unsigned long isa_mem_base = 0;
#endif #endif
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
int static int mpc85xx_exclude_device(u_char bus, u_char devfn)
mpc85xx_exclude_device(u_char bus, u_char devfn)
{ {
if (bus == 0 && PCI_SLOT(devfn) == 0) if (bus == 0 && PCI_SLOT(devfn) == 0)
return PCIBIOS_DEVICE_NOT_FOUND; return PCIBIOS_DEVICE_NOT_FOUND;
@ -69,7 +68,7 @@ static void cpm2_cascade(unsigned int irq, struct irq_desc *desc)
#endif /* CONFIG_CPM2 */ #endif /* CONFIG_CPM2 */
void __init mpc85xx_ads_pic_init(void) static void __init mpc85xx_ads_pic_init(void)
{ {
struct mpic *mpic; struct mpic *mpic;
struct resource r; struct resource r;
@ -254,7 +253,7 @@ static void __init mpc85xx_ads_setup_arch(void)
#endif #endif
} }
void mpc85xx_ads_show_cpuinfo(struct seq_file *m) static void mpc85xx_ads_show_cpuinfo(struct seq_file *m)
{ {
uint pvid, svid, phid1; uint pvid, svid, phid1;
uint memsize = total_memory; uint memsize = total_memory;

Просмотреть файл

@ -56,7 +56,6 @@ unsigned long isa_mem_base = 0;
static int cds_pci_slot = 2; static int cds_pci_slot = 2;
static volatile u8 *cadmus; static volatile u8 *cadmus;
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
#define ARCADIA_HOST_BRIDGE_IDSEL 17 #define ARCADIA_HOST_BRIDGE_IDSEL 17
@ -64,8 +63,7 @@ static volatile u8 *cadmus;
extern int mpc85xx_pci2_busno; extern int mpc85xx_pci2_busno;
int static int mpc85xx_exclude_device(u_char bus, u_char devfn)
mpc85xx_exclude_device(u_char bus, u_char devfn)
{ {
if (bus == 0 && PCI_SLOT(devfn) == 0) if (bus == 0 && PCI_SLOT(devfn) == 0)
return PCIBIOS_DEVICE_NOT_FOUND; return PCIBIOS_DEVICE_NOT_FOUND;
@ -81,8 +79,7 @@ mpc85xx_exclude_device(u_char bus, u_char devfn)
return PCIBIOS_SUCCESSFUL; return PCIBIOS_SUCCESSFUL;
} }
void __init static void __init mpc85xx_cds_pcibios_fixup(void)
mpc85xx_cds_pcibios_fixup(void)
{ {
struct pci_dev *dev; struct pci_dev *dev;
u_char c; u_char c;
@ -144,7 +141,7 @@ static void mpc85xx_8259_cascade(unsigned int irq, struct irq_desc *desc)
#endif /* PPC_I8259 */ #endif /* PPC_I8259 */
#endif /* CONFIG_PCI */ #endif /* CONFIG_PCI */
void __init mpc85xx_cds_pic_init(void) static void __init mpc85xx_cds_pic_init(void)
{ {
struct mpic *mpic; struct mpic *mpic;
struct resource r; struct resource r;
@ -224,12 +221,10 @@ void __init mpc85xx_cds_pic_init(void)
#endif /* CONFIG_PPC_I8259 */ #endif /* CONFIG_PPC_I8259 */
} }
/* /*
* Setup the architecture * Setup the architecture
*/ */
static void __init static void __init mpc85xx_cds_setup_arch(void)
mpc85xx_cds_setup_arch(void)
{ {
struct device_node *cpu; struct device_node *cpu;
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
@ -276,9 +271,7 @@ mpc85xx_cds_setup_arch(void)
#endif #endif
} }
static void mpc85xx_cds_show_cpuinfo(struct seq_file *m)
void
mpc85xx_cds_show_cpuinfo(struct seq_file *m)
{ {
uint pvid, svid, phid1; uint pvid, svid, phid1;
uint memsize = total_memory; uint memsize = total_memory;