Commit 6d577352 authored by James Bottomley's avatar James Bottomley

SCSI 53c700: add module_exit routine otherwise module isn't removable

parent 45abc92b
......@@ -2039,8 +2039,15 @@ NCR_700_init(void)
return 0;
}
/* NULL exit routine to keep modutils happy */
STATIC void __exit
NCR_700_exit(void)
{
}
EXPORT_SYMBOL(NCR_700_detect);
EXPORT_SYMBOL(NCR_700_release);
EXPORT_SYMBOL(NCR_700_intr);
module_init(NCR_700_init);
module_exit(NCR_700_exit);
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