mirror of
https://github.com/aircrack-ng/rtl8812au.git
synced 2024-11-08 20:25:11 +00:00
Fix interface rename error
This commit is contained in:
parent
02e8c82c9b
commit
9248e99dcc
@ -1419,7 +1419,7 @@ static u8 is_rtw_ndev(struct net_device *ndev)
|
||||
static int rtw_ndev_notifier_call(struct notifier_block *nb, unsigned long state, void *ptr)
|
||||
{
|
||||
struct net_device *ndev;
|
||||
_adapter *adapter;
|
||||
_adapter *adapter = rtw_netdev_priv(ndev);
|
||||
|
||||
if (ptr == NULL)
|
||||
return NOTIFY_DONE;
|
||||
@ -1443,6 +1443,8 @@ static int rtw_ndev_notifier_call(struct notifier_block *nb, unsigned long state
|
||||
switch (state) {
|
||||
case NETDEV_CHANGENAME:
|
||||
rtw_adapter_proc_replace(ndev);
|
||||
strncpy(adapter->old_ifname, ndev->name, IFNAMSIZ);
|
||||
adapter->old_ifname[IFNAMSIZ-1] = 0;
|
||||
break;
|
||||
#ifdef CONFIG_NEW_NETDEV_HDL
|
||||
case NETDEV_PRE_UP :
|
||||
|
Loading…
Reference in New Issue
Block a user