File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,6 @@ extern void ccio_init(void);
319
319
extern void iosapic_init (void );
320
320
extern void lba_init (void );
321
321
extern void sba_init (void );
322
- extern void parisc_eisa_init (void );
323
322
struct parisc_device ;
324
323
struct resource ;
325
324
extern void sba_distributed_lmmio (struct parisc_device * , struct resource * );
Original file line number Diff line number Diff line change @@ -303,9 +303,6 @@ static int __init parisc_init(void)
303
303
#if defined(CONFIG_GSC_LASI ) || defined(CONFIG_GSC_WAX )
304
304
gsc_init ();
305
305
#endif
306
- #ifdef CONFIG_EISA
307
- parisc_eisa_init ();
308
- #endif
309
306
310
307
#ifdef CONFIG_CHASSIS_LCD_LED
311
308
register_led_regions (); /* register LED port info in procfs */
Original file line number Diff line number Diff line change @@ -400,10 +400,11 @@ static struct parisc_driver eisa_driver __refdata = {
400
400
.probe = eisa_probe ,
401
401
};
402
402
403
- void __init parisc_eisa_init (void )
403
+ static int __init parisc_eisa_init (void )
404
404
{
405
- register_parisc_driver (& eisa_driver );
405
+ return register_parisc_driver (& eisa_driver );
406
406
}
407
+ arch_initcall (parisc_eisa_init );
407
408
408
409
409
410
static unsigned int eisa_irq_configured ;
You can’t perform that action at this time.
0 commit comments