···286286#if defined(CONFIG_IOMMU_SBA)287287 sba_init();288288#endif289289-#if defined(CONFIG_PCI_LBA)290290- lba_init();291291-#endif292289293290#ifdef CONFIG_CHASSIS_LCD_LED294291 register_led_regions(); /* register LED port info in procfs */
+3-2
drivers/parisc/lba_pci.c
···16821682** One time initialization to let the world know the LBA was found.16831683** Must be called exactly once before pci_init().16841684*/16851685-void __init lba_init(void)16851685+static int __init lba_init(void)16861686{16871687- register_parisc_driver(&lba_driver);16871687+ return register_parisc_driver(&lba_driver);16881688}16891689+arch_initcall(lba_init);1689169016901691/*16911692** Initialize the IBASE/IMASK registers for LBA (Elroy).