Re: [PATCH] ide-core: remove conditional compiling with MODULE in ide-core.c

2008-02-06 Thread Bartlomiej Zolnierkiewicz
Hi, On Saturday 02 February 2008, Denis Cheng wrote: > use module_init/module_exit to replace the original cond-compiling, these > macros were well designed to deal module/built-in compiling. > > the original __setup with null string was invalid and not executed, > __setup("", ide_setup);

Re: [PATCH] ide-core: remove conditional compiling with MODULE in ide-core.c

2008-02-02 Thread Bodo Eggert
Denis Cheng <[EMAIL PROTECTED]> wrote: > use module_init/module_exit to replace the original cond-compiling, these > macros were well designed to deal module/built-in compiling. > > the original __setup with null string was invalid and not executed, > __setup("", ide_setup); > > however, with th