|
From: Gordon M. <gm...@us...> - 2001-03-07 19:33:16
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bluetooth.c 1.143 1.144=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
--Added empty __exit and __init defines for linux 2.0.x
The diff of the modified file(s):
--- bluetooth.c 2001/03/07 18:54:56 1.143
+++ bluetooth.c 2001/03/07 19:34:58 1.144
@@ -54,6 +54,8 @@
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
# define module_init(x) int init_module(void) { return x(); }
# define module_exit(x) void cleanup_module(void) { x(); }
+# define __init
+# define __exit
#else
# include <linux/init.h>
# if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0)
|