diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-11-23 21:50:20 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:04:04 -0500 |
commit | 93a3b607e6eff7880959149a581d90c71887eb19 (patch) | |
tree | 64078dd70c71256ad56e38737715587a94863d82 /drivers/net/wireless/libertas/wext.c | |
parent | 092427be8cef341c957a93ec2469890501a09bff (diff) |
wireless: checkpatch cleanups
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/wireless/libertas/wext.c')
-rw-r--r-- | drivers/net/wireless/libertas/wext.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/wireless/libertas/wext.c b/drivers/net/wireless/libertas/wext.c index 4ef5b9e00c77..19c2873d2d78 100644 --- a/drivers/net/wireless/libertas/wext.c +++ b/drivers/net/wireless/libertas/wext.c | |||
@@ -32,10 +32,8 @@ static inline void libertas_postpone_association_work(wlan_private *priv) | |||
32 | static inline void libertas_cancel_association_work(wlan_private *priv) | 32 | static inline void libertas_cancel_association_work(wlan_private *priv) |
33 | { | 33 | { |
34 | cancel_delayed_work(&priv->assoc_work); | 34 | cancel_delayed_work(&priv->assoc_work); |
35 | if (priv->adapter->pending_assoc_req) { | 35 | kfree(priv->adapter->pending_assoc_req); |
36 | kfree(priv->adapter->pending_assoc_req); | 36 | priv->adapter->pending_assoc_req = NULL; |
37 | priv->adapter->pending_assoc_req = NULL; | ||
38 | } | ||
39 | } | 37 | } |
40 | 38 | ||
41 | 39 | ||