Skip to content

Commit

Permalink
ionic: fix unused assignment
Browse files Browse the repository at this point in the history
Remove an unused initialized value.

Fixes: 7e4d475 ("ionic: replay filters after fw upgrade")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Shannon Nelson <snelson@pensando.io>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Shannon Nelson authored and David S. Miller committed Apr 14, 2020
1 parent 555cd19 commit 2c0df9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/pensando/ionic/ionic_rx_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void ionic_rx_filter_replay(struct ionic_lif *lif)
struct hlist_head *head;
struct hlist_node *tmp;
unsigned int i;
int err = 0;
int err;

ac = &ctx.cmd.rx_filter_add;

Expand Down

0 comments on commit 2c0df9f

Please sign in to comment.