mirror of
https://github.com/aircrack-ng/rtl8812au.git
synced 2024-11-22 21:34:37 +00:00
Merge pull request #424 from u-ra/v5.6.4.1
Fix oops on interface rename
This commit is contained in:
commit
547d44bb9b
@ -1404,7 +1404,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 = rtw_netdev_priv(ndev);
|
||||
_adapter *adapter;
|
||||
|
||||
if (ptr == NULL)
|
||||
return NOTIFY_DONE;
|
||||
@ -1423,6 +1423,8 @@ static int rtw_ndev_notifier_call(struct notifier_block *nb, unsigned long state
|
||||
|
||||
RTW_INFO(FUNC_NDEV_FMT" state:%lu\n", FUNC_NDEV_ARG(ndev), state);
|
||||
|
||||
adapter = rtw_netdev_priv(ndev);
|
||||
|
||||
switch (state) {
|
||||
case NETDEV_CHANGENAME:
|
||||
//rtw_adapter_proc_replace(ndev);
|
||||
|
Loading…
Reference in New Issue
Block a user