]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: fix build failure
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Tue, 30 Jun 2015 08:21:51 +0000 (13:51 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 7 Jul 2015 02:18:17 +0000 (19:18 -0700)
commit 80279fb7ba5b ("cfg80211: properly send
NL80211_ATTR_DISCONNECTED_BY_AP in disconnect") has changed the api of
cfg80211_disconnected() and caused a build failure.
Add the extra argument as false since it appears from the code that the
disconnection is not locally generated.
And incase of doubt we can use false as that is the default behaviour.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c

index 92064db9eb05589a37127e97c5bd0a715087bf9c..f7f5fafe49fea6945a22e57d9776b502f30d569e 100644 (file)
@@ -675,7 +675,8 @@ static void CfgConnectResult(tenuConnDisconnEvent enuConnDisconnEvent,
                        pstrDisconnectNotifInfo->u16reason = 1;
                }
                cfg80211_disconnected(dev, pstrDisconnectNotifInfo->u16reason, pstrDisconnectNotifInfo->ie,
-                                     pstrDisconnectNotifInfo->ie_len, GFP_KERNEL);
+                                     pstrDisconnectNotifInfo->ie_len, false,
+                                     GFP_KERNEL);
 
        }