Messages in this thread |  | | | From | Rusty Russell <> | | Subject | Re: [PATCH] fix/improve modular IDE (Re: [PATCH] modular IDE for 2.6.1 ugly but working fix) | | Date | Tue, 20 Jan 2004 13:01:02 +1100 |
| |
In message <200401171422.06211.bzolnier@elka.pw.edu.pl> you write: > +static int __init ide_generic_init(void) > +{ > + MOD_INC_USE_COUNT; > + if (ide_hwifs[0].io_ports[IDE_DATA_OFFSET]) > + ide_get_lock(NULL, NULL); /* for atari only */ > + > + (void)ideprobe_init(); > + > + if (ide_hwifs[0].io_ports[IDE_DATA_OFFSET]) > + ide_release_lock(); /* for atari only */ > + > +#ifdef CONFIG_PROC_FS > + create_proc_ide_interfaces(); > +#endif > + return 0; > +} > + > +static void __exit ide_generic_exit(void) > +{ > +}
If you don't want to be unloadable, just don't have a module_exit() at all.
Thanks, Rusty. -- Anyone who quotes me in their sig is an idiot. -- Rusty Russell. - 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/
|  |