diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-04-15 01:42:47 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-04-15 01:42:47 +0000 |
commit | 2b8c18dce11933d059c648bea491d1237f13d858 (patch) | |
tree | 052db5980119ec8f18c255c42b0a610990e7b9ec /target/linux/magicbox/files/drivers/ide/ppc | |
parent | a426ecf8277721ef1e11d3f2a87b4075f55aba9e (diff) |
fix magicbox_ide on 2.6.24
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10837 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/magicbox/files/drivers/ide/ppc')
-rw-r--r-- | target/linux/magicbox/files/drivers/ide/ppc/magicbox_ide.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/magicbox/files/drivers/ide/ppc/magicbox_ide.c b/target/linux/magicbox/files/drivers/ide/ppc/magicbox_ide.c index 2e29e8380a..2c15320931 100644 --- a/target/linux/magicbox/files/drivers/ide/ppc/magicbox_ide.c +++ b/target/linux/magicbox/files/drivers/ide/ppc/magicbox_ide.c @@ -100,8 +100,10 @@ static void __init ide_magicbox_register(unsigned long addr, #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22) if (ide_register_hw(&hw, &hwif) != -1) -#else +#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) if (ide_register_hw(&hw, 1, &hwif) != -1) +#else + if (ide_register_hw(&hw, NULL, 1, &hwif) != -1) #endif { printk(KERN_NOTICE "magicbox-ide: Registered IDE-CF driver\n"); |