Re: [patch 1/5] Hotplug firmware loader for Keyspan usb-serial driver
Jan Harkes wrote: A simple Intel HEX format parser/loader. ... +static int __init no_init(void) +{ + return 0; +} + +static void __exit no_exit(void) +{ +} + +module_init(no_init); +module_exit(no_exit); module_init/exit are not needed if both are simply stubs. --
[patch 1/5] Hotplug firmware loader for Keyspan usb-serial driver
A simple Intel HEX format parser/loader. Signed-off-by: Jan Harkes <[EMAIL PROTECTED]> include/linux/ihex_parser.h | 23 + lib/Kconfig |8 + lib/Makefile|2 lib/ihex_parser.c | 181 4 files c