patch-2.4.9 linux/drivers/net/wan/cycx_main.c
Next file: linux/drivers/net/wan/cycx_x25.c
Previous file: linux/drivers/net/wan/cosa.c
Back to the patch index
Back to the overall index
- Lines: 11
- Date:
Wed Aug 15 01:22:15 2001
- Orig file:
v2.4.8/linux/drivers/net/wan/cycx_main.c
- Orig date:
Tue May 22 10:23:16 2001
diff -u --recursive --new-file v2.4.8/linux/drivers/net/wan/cycx_main.c linux/drivers/net/wan/cycx_main.c
@@ -111,8 +111,8 @@
fullname, DRV_VERSION, DRV_RELEASE, copyright);
/* Verify number of cards and allocate adapter data space */
- ncards = min(ncards, MAX_CARDS);
- ncards = max(ncards, 1);
+ ncards = min(int, ncards, MAX_CARDS);
+ ncards = max(int, ncards, 1);
card_array = kmalloc(sizeof(cycx_t) * ncards, GFP_KERNEL);
if (!card_array)
goto out;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)