summaryrefslogtreecommitdiffstats
path: root/package/rt61/patches/002-linux_2_4_module_param.patch
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-04-17 22:14:32 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-04-17 22:14:32 +0000
commitbd5a76636d71f9fcb0ea37bb799f9f96d6cb29a9 (patch)
tree7f1c0efbf86b9735d366cbd3b526f41d1b56b99e /package/rt61/patches/002-linux_2_4_module_param.patch
parent7e608cbab892408dd751aa2d1e7631c2cf0e0014 (diff)
Patches for rt61 are no longer required
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6990 3c298f89-4303-0410-b956-a3cf2f4a3e73
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, 0 insertions, 22 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
deleted file mode 100644
index ee773a856..000000000
--- a/package/rt61/patches/002-linux_2_4_module_param.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- 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;