Loading arch/parisc/include/asm/processor.h +0 −1 Original line number Diff line number Diff line Loading @@ -315,7 +315,6 @@ extern int show_cpuinfo (struct seq_file *m, void *v); /* driver code in driver/parisc */ extern void processor_init(void); extern void iosapic_init(void); extern void sba_init(void); struct parisc_device; struct resource; extern void sba_distributed_lmmio(struct parisc_device *, struct resource *); Loading arch/parisc/kernel/setup.c +0 −3 Original line number Diff line number Diff line Loading @@ -282,9 +282,6 @@ static int __init parisc_init(void) /* These are in a non-obvious order, will fix when we have an iotree */ #if defined(CONFIG_IOSAPIC) iosapic_init(); #endif #if defined(CONFIG_IOMMU_SBA) sba_init(); #endif return 0; } Loading drivers/parisc/sba_iommu.c +3 −2 Original line number Diff line number Diff line Loading @@ -1994,10 +1994,11 @@ static int __init sba_driver_callback(struct parisc_device *dev) ** This is the only routine which is NOT static. ** Must be called exactly once before pci_init(). */ void __init sba_init(void) static int __init sba_init(void) { register_parisc_driver(&sba_driver); return register_parisc_driver(&sba_driver); } arch_initcall(sba_init); /** Loading Loading
arch/parisc/include/asm/processor.h +0 −1 Original line number Diff line number Diff line Loading @@ -315,7 +315,6 @@ extern int show_cpuinfo (struct seq_file *m, void *v); /* driver code in driver/parisc */ extern void processor_init(void); extern void iosapic_init(void); extern void sba_init(void); struct parisc_device; struct resource; extern void sba_distributed_lmmio(struct parisc_device *, struct resource *); Loading
arch/parisc/kernel/setup.c +0 −3 Original line number Diff line number Diff line Loading @@ -282,9 +282,6 @@ static int __init parisc_init(void) /* These are in a non-obvious order, will fix when we have an iotree */ #if defined(CONFIG_IOSAPIC) iosapic_init(); #endif #if defined(CONFIG_IOMMU_SBA) sba_init(); #endif return 0; } Loading
drivers/parisc/sba_iommu.c +3 −2 Original line number Diff line number Diff line Loading @@ -1994,10 +1994,11 @@ static int __init sba_driver_callback(struct parisc_device *dev) ** This is the only routine which is NOT static. ** Must be called exactly once before pci_init(). */ void __init sba_init(void) static int __init sba_init(void) { register_parisc_driver(&sba_driver); return register_parisc_driver(&sba_driver); } arch_initcall(sba_init); /** Loading