summaryrefslogtreecommitdiff
path: root/package/rt61/patches/002-linux_2_4_module_param.patch
diff options
context:
space:
mode:
authorTim Yardley <lst@openwrt.org>2007-03-05 01:38:44 +0000
committerTim Yardley <lst@openwrt.org>2007-03-05 01:38:44 +0000
commitccfa4a7af6c49dd72a541f25568e1ab561002aa7 (patch)
tree2c8745bf81de6241ca198fe4883e26cffde146ba /package/rt61/patches/002-linux_2_4_module_param.patch
parent44a2fd050c2c95f342ccca8bcdcb3d05f4ac1042 (diff)
downloadmtk-20170518-ccfa4a7af6c49dd72a541f25568e1ab561002aa7.zip
mtk-20170518-ccfa4a7af6c49dd72a541f25568e1ab561002aa7.tar.gz
mtk-20170518-ccfa4a7af6c49dd72a541f25568e1ab561002aa7.tar.bz2
trunk.. same deal as changeset:6526
SVN-Revision: 6527
Diffstat (limited to 'package/rt61/patches/002-linux_2_4_module_param.patch')
-rw-r--r--package/rt61/patches/002-linux_2_4_module_param.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/package/rt61/patches/002-linux_2_4_module_param.patch b/package/rt61/patches/002-linux_2_4_module_param.patch
new file mode 100644
index 0000000..ee773a8
--- /dev/null
+++ b/package/rt61/patches/002-linux_2_4_module_param.patch
@@ -0,0 +1,22 @@
+--- rt61-old/Module/rtmp_main.c 2006/06/16 11:12:40 1.14
++++ rt61-new/Module/rtmp_main.c 2006/08/12 13:03:25 1.15
+@@ -48,11 +48,19 @@
+ // Global variable, debug level flag
+ // Don't hide this behing debug define. There should be as little difference between debug and no-debug as possible.
+ int debug = 0;
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
+ module_param(debug, int, 0444);
++#else
++MODULE_PARM(debug, "i");
++#endif
+ MODULE_PARM_DESC(debug, "Enable level: accepted values: 1 to switch debug on, 0 to switch debug off.");
+
+ static char *ifname = NULL ;
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
+ module_param(ifname, charp, 0444);
++#else
++MODULE_PARM(ifname, "s");
++#endif
+ MODULE_PARM_DESC(ifname, "Network device name (default ra%d)");
+
+ static dma_addr_t dma_adapter;