Re: [PATCH] fix/improve modular IDE (Re: [PATCH] modular IDE for 2.6.1 ugly but working fix)

From: Rusty Russell
Date: Mon Jan 19 2004 - 21:20:03 EST


In message <200401171422.06211.bzolnier@xxxxxxxxxxxxxx> 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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/