Re: Linux 2.5.31

Douglas Gilbert (dougg@torque.net)
Sun, 11 Aug 2002 15:21:48 -0400


ide-cd and ide-scsi couldn't be installed as modules
on my machine in lk 2.5.31 because the EXPORT of
unregister_ata_driver() was removed.

The reversal below fixed my problem.

Doug Gilbert

--- linux/drivers/ide/main.c2531 Sun Aug 11 09:19:24 2002
+++ linux/drivers/ide/main.c Sun Aug 11 13:10:06 2002
@@ -1124,6 +1124,8 @@
}
}

+EXPORT_SYMBOL(unregister_ata_driver);
+
EXPORT_SYMBOL(ide_hwifs);
EXPORT_SYMBOL(ide_lock);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/