fix magicbox_ide on 2.6.24
SVN-Revision: 10837
This commit is contained in:
parent
c7ed0fbd18
commit
fbeeb4ae82
1 changed files with 3 additions and 1 deletions
|
@ -100,8 +100,10 @@ static void __init ide_magicbox_register(unsigned long addr,
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
|
||||||
if (ide_register_hw(&hw, &hwif) != -1)
|
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)
|
if (ide_register_hw(&hw, 1, &hwif) != -1)
|
||||||
|
#else
|
||||||
|
if (ide_register_hw(&hw, NULL, 1, &hwif) != -1)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
printk(KERN_NOTICE "magicbox-ide: Registered IDE-CF driver\n");
|
printk(KERN_NOTICE "magicbox-ide: Registered IDE-CF driver\n");
|
||||||
|
|
Loading…
Reference in a new issue