Commit 51e9ac4b authored by Russell King's avatar Russell King

[ARM] IDE updates

- ide_register_hw takes two arguments, not one.
- ide_fix_driveid is no longer used.
parent 17b77695
...@@ -44,5 +44,5 @@ ide_init_default_hwifs(void) ...@@ -44,5 +44,5 @@ ide_init_default_hwifs(void)
ide_init_hwif_ports(&hw, 0x1f0, 0x3f6, NULL); ide_init_hwif_ports(&hw, 0x1f0, 0x3f6, NULL);
hw.irq = IRQ_HARDDISK; hw.irq = IRQ_HARDDISK;
ide_register_hw(&hw); ide_register_hw(&hw, NULL);
} }
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
* The following are not needed for the non-m68k ports * The following are not needed for the non-m68k ports
*/ */
#define ide_ack_intr(hwif) (1) #define ide_ack_intr(hwif) (1)
#define ide_fix_driveid(id) do {} while (0)
#define ide_release_lock(lock) do {} while (0) #define ide_release_lock(lock) do {} while (0)
#define ide_get_lock(lock, hdlr, data) do {} while (0) #define ide_get_lock(lock, hdlr, data) do {} while (0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment