From 40e8ee9d467dda815b10e9c2eb77ab7cf715ca1a Mon Sep 17 00:00:00 2001 From: Peng Li Date: Sun, 30 May 2021 14:24:30 +0800 Subject: net: sealevel: remove redundant initialization for statics Should not initialise statics to false. Signed-off-by: Peng Li Signed-off-by: Guangbin Huang Signed-off-by: Jakub Kicinski --- drivers/net/wan/sealevel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/net/wan/sealevel.c') diff --git a/drivers/net/wan/sealevel.c b/drivers/net/wan/sealevel.c index be618fd0b9a8..d19e9024865f 100644 --- a/drivers/net/wan/sealevel.c +++ b/drivers/net/wan/sealevel.c @@ -351,7 +351,7 @@ static int io = 0x238; static int txdma = 1; static int rxdma = 3; static int irq = 5; -static bool slow=false; +static bool slow; module_param_hw(io, int, ioport, 0); MODULE_PARM_DESC(io, "The I/O base of the Sealevel card"); -- cgit