Skip to content

Commit

Permalink
net: sealevel: remove redundant initialization for statics
Browse files Browse the repository at this point in the history
Should not initialise statics to false.

Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
Peng Li authored and Jakub Kicinski committed Jun 1, 2021
1 parent 52499d2 commit 40e8ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wan/sealevel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 40e8ee9

Please sign in to comment.