aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/ide.c')
-rw-r--r--drivers/ide/ide.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ide/ide.c b/drivers/ide/ide.c
index 77af743425e8..6f99f5c90062 100644
--- a/drivers/ide/ide.c
+++ b/drivers/ide/ide.c
@@ -1555,6 +1555,7 @@ done:
1555extern void __init pnpide_init(void); 1555extern void __init pnpide_init(void);
1556extern void __exit pnpide_exit(void); 1556extern void __exit pnpide_exit(void);
1557extern void __init h8300_ide_init(void); 1557extern void __init h8300_ide_init(void);
1558extern void __init mpc8xx_ide_probe(void);
1558 1559
1559/* 1560/*
1560 * probe_for_hwifs() finds/initializes "known" IDE interfaces 1561 * probe_for_hwifs() finds/initializes "known" IDE interfaces
@@ -1619,6 +1620,9 @@ static void __init probe_for_hwifs (void)
1619#ifdef CONFIG_H8300 1620#ifdef CONFIG_H8300
1620 h8300_ide_init(); 1621 h8300_ide_init();
1621#endif 1622#endif
1623#ifdef BLK_DEV_MPC8xx_IDE
1624 mpc8xx_ide_probe();
1625#endif
1622} 1626}
1623 1627
1624/* 1628/*