3c515: correct module_param data type (remove "const");
drivers/net/3c515.c:406: warning: return discards qualifiers from
pointer target type
drivers/net/3c515.c:406: warning: initialization discards qualifiers
from pointer target type
Signed-off-by: Randy Dunlap <rddunlap@xxxxxxxx>
diffstat:=
drivers/net/3c515.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
---
3c515: correct module_param data type (remove "const");
drivers/net/3c515.c:406: warning: return discards qualifiers from pointer
target type
drivers/net/3c515.c:406: warning: initialization discards qualifiers from
pointer target type
Signed-off-by: Randy Dunlap <rddunlap@xxxxxxxx>
diffstat:=
drivers/net/3c515.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -Naurp ./drivers/net/3c515.c~3c515_modprm ./drivers/net/3c515.c
--- ./drivers/net/3c515.c~3c515_modprm 2005-01-10 13:28:51.000000000 -0800
+++ ./drivers/net/3c515.c 2005-01-17 16:17:33.468358720 -0800
@@ -34,7 +34,7 @@ DRV_NAME ".c:v" DRV_VERSION " " DRV_RELD
/* "Knobs" that adjust features and parameters. */
/* Set the copy breakpoint for the copy-only-tiny-frames scheme.
Setting to > 1512 effectively disables this feature. */
-static const int rx_copybreak = 200;
+static int rx_copybreak = 200;
/* Allow setting MTU to a larger size, bypassing the normal ethernet setup. */
static const int mtu = 1500;
|