Commit 383de566 authored by Daniil Dulov's avatar Daniil Dulov Committed by Marc Kleine-Budde

can: softing: remove redundant NULL check

In this case dev cannot be NULL, so remove redundant check.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: 03fd3cf5 ("can: add driver for Softing card")
Signed-off-by: default avatarDaniil Dulov <d.dulov@aladdin.ru>
Link: https://lore.kernel.org/all/20240211150535.3529-1-d.dulov@aladdin.ruSigned-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent 85216f56
...@@ -436,7 +436,7 @@ int softing_startstop(struct net_device *dev, int up) ...@@ -436,7 +436,7 @@ int softing_startstop(struct net_device *dev, int up)
return ret; return ret;
bus_bitmask_start = 0; bus_bitmask_start = 0;
if (dev && up) if (up)
/* prepare to start this bus as well */ /* prepare to start this bus as well */
bus_bitmask_start |= (1 << priv->index); bus_bitmask_start |= (1 << priv->index);
/* bring netdevs down */ /* bring netdevs down */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment