net: wireless: bcmdhd: Fix pm_notifier unregistration
authorDmitry Shmidt <dimitrysh@google.com>
Thu, 30 Jun 2011 17:09:06 +0000 (10:09 -0700)
committermgross <mark.gross@intel.com>
Wed, 9 Nov 2011 20:09:38 +0000 (12:09 -0800)
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
drivers/net/wireless/bcmdhd/dhd_linux.c

index 46e4a81..dee662c 100644 (file)
@@ -3037,7 +3037,6 @@ void dhd_detach(dhd_pub_t *dhdp)
        }
 #endif /* defined(CONFIG_HAS_EARLYSUSPEND) */
 
-
 #if defined(CONFIG_WIRELESS_EXT)
        if (dhd->dhd_state & DHD_ATTACH_STATE_WL_ATTACH) {
                /* Detatch and unlink in the iw */
@@ -3108,12 +3107,11 @@ void dhd_detach(dhd_pub_t *dhdp)
                wl_cfg80211_detach();
 #endif
 
-       if (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT) {
 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && defined(CONFIG_PM_SLEEP)
-               unregister_pm_notifier(&dhd_sleep_pm_notifier);
-#endif 
-       /* && defined(CONFIG_PM_SLEEP) */
+       unregister_pm_notifier(&dhd_sleep_pm_notifier);
+#endif
 
+       if (dhd->dhd_state & DHD_ATTACH_STATE_WAKELOCKS_INIT) {
 #ifdef CONFIG_HAS_WAKELOCK
                wake_lock_destroy(&dhd->wl_wifi);
                wake_lock_destroy(&dhd->wl_rxwake);