diff options
author | 2006-09-21 19:07:50 +0000 | |
---|---|---|
committer | 2006-09-21 19:07:50 +0000 | |
commit | 4030acb75c3d5873b3786ebe94e7c199688c7897 (patch) | |
tree | 192867a2691fab6ac0c07e34589433a9460ec22d /net-dialup/ltmodem/files | |
parent | Fix broken compilation when build against a 2.6.18 kernel (#148524) (diff) | |
download | gentoo-2-4030acb75c3d5873b3786ebe94e7c199688c7897.tar.gz gentoo-2-4030acb75c3d5873b3786ebe94e7c199688c7897.tar.bz2 gentoo-2-4030acb75c3d5873b3786ebe94e7c199688c7897.zip |
Fix broken compilation when build against a 2.6.18 kernel (#148524)
(Portage version: 2.1.1)
(Signed Manifest commit)
Diffstat (limited to 'net-dialup/ltmodem/files')
-rw-r--r-- | net-dialup/ltmodem/files/ltmodem-2.6-alk-8-module_param.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/net-dialup/ltmodem/files/ltmodem-2.6-alk-8-module_param.patch b/net-dialup/ltmodem/files/ltmodem-2.6-alk-8-module_param.patch deleted file mode 100644 index aae5f1e63f30..000000000000 --- a/net-dialup/ltmodem/files/ltmodem-2.6-alk-8-module_param.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nru ltmodem-2.6-alk-8.orig/lt_modem.c ltmodem-2.6-alk-8/lt_modem.c ---- ltmodem-2.6-alk-8.orig/lt_modem.c 2005-12-12 03:18:55.000000000 +0200 -+++ ltmodem-2.6-alk-8/lt_modem.c 2006-04-19 21:43:32.142640500 +0300 -@@ -120,14 +120,14 @@ - static int vendor_id = 0; - static int device_id = 0; - --MODULE_PARM(vendor_id, "i"); -+module_param(vendor_id, int, 0); - MODULE_PARM_DESC(vendor_id, "Vendor ID of the Lucent Modem e.g. vendor_id=0x11c1"); --MODULE_PARM(device_id, "i"); -+module_param(device_id, int, 0); - MODULE_PARM_DESC(device_id, "Device ID of the Lucent Modem e.g. device_id=0x0440"); - - static int Forced[4] = {-1,-1,-1,0}; - --MODULE_PARM(Forced, "4i"); -+module_param_array(Forced, int, NULL, 0); - MODULE_PARM_DESC(Forced, "Forced Irq,BaseAddress,ComAddress[,NoDetect] of the Lucent Modem e.g. Forced=3,0x130,0x2f8"); - - static |