|
@@ -1049,7 +1049,7 @@ static int init_irq (ide_hwif_t *hwif)
|
|
|
*/
|
|
|
if (!match || match->irq != hwif->irq) {
|
|
|
int sa = 0;
|
|
|
-#if defined(__mc68000__) || defined(CONFIG_APUS)
|
|
|
+#if defined(__mc68000__)
|
|
|
sa = IRQF_SHARED;
|
|
|
#endif /* __mc68000__ || CONFIG_APUS */
|
|
|
|
|
@@ -1072,7 +1072,7 @@ static int init_irq (ide_hwif_t *hwif)
|
|
|
hwif->rqsize = 65536;
|
|
|
}
|
|
|
|
|
|
-#if !defined(__mc68000__) && !defined(CONFIG_APUS)
|
|
|
+#if !defined(__mc68000__)
|
|
|
printk("%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name,
|
|
|
hwif->io_ports[IDE_DATA_OFFSET],
|
|
|
hwif->io_ports[IDE_DATA_OFFSET]+7,
|
|
@@ -1080,7 +1080,7 @@ static int init_irq (ide_hwif_t *hwif)
|
|
|
#else
|
|
|
printk("%s at 0x%08lx on irq %d", hwif->name,
|
|
|
hwif->io_ports[IDE_DATA_OFFSET], hwif->irq);
|
|
|
-#endif /* __mc68000__ && CONFIG_APUS */
|
|
|
+#endif /* __mc68000__ */
|
|
|
if (match)
|
|
|
printk(" (%sed with %s)",
|
|
|
hwif->sharing_irq ? "shar" : "serializ", match->name);
|