mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 15:36:45 +07:00
s390/qeth: remove a redundant check for card->dev
smatch complains that __qeth_l3_set_offline() first accesses card->dev,
and then later checks whether the pointer is valid.
Since commit d3d1b205e8
("s390/qeth: allocate netdevice early"), the
pointer is _always_ valid - that patch merely missed to remove this one
check.
Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d4560150cb
commit
464e86dafc
@ -2414,7 +2414,7 @@ static int __qeth_l3_set_offline(struct ccwgroup_device *cgdev,
|
|||||||
rtnl_unlock();
|
rtnl_unlock();
|
||||||
|
|
||||||
qeth_l3_stop_card(card);
|
qeth_l3_stop_card(card);
|
||||||
if ((card->options.cq == QETH_CQ_ENABLED) && card->dev) {
|
if (card->options.cq == QETH_CQ_ENABLED) {
|
||||||
rtnl_lock();
|
rtnl_lock();
|
||||||
call_netdevice_notifiers(NETDEV_REBOOT, card->dev);
|
call_netdevice_notifiers(NETDEV_REBOOT, card->dev);
|
||||||
rtnl_unlock();
|
rtnl_unlock();
|
||||||
|
Loading…
Reference in New Issue
Block a user