mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-01 11:32:33 +07:00
mac802154: iface: cleanup stack variable
There is no need to init res with zero, res can be unused but then we returning zero and not res. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
95c0aa1571
commit
5c698e8bbf
@ -189,7 +189,7 @@ static int mac802154_slave_open(struct net_device *dev)
|
|||||||
{
|
{
|
||||||
struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
|
struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
|
||||||
struct ieee802154_local *local = sdata->local;
|
struct ieee802154_local *local = sdata->local;
|
||||||
int res = 0;
|
int res;
|
||||||
|
|
||||||
ASSERT_RTNL();
|
ASSERT_RTNL();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user