osdrvCallbacks.devicePowerChangeHandler = ar6000_power_change_ev;
#endif
- r = ar6000_pm_init();
- if (r)
- return r;
-
#ifdef DEBUG
/* Set the debug flags if specified at load time */
if(debugflags != 0)
a_module_debug_support_cleanup();
- ar6000_pm_exit();
-
AR_DEBUG_PRINTF(ATH_DEBUG_INFO,("ar6000_cleanup: success\n"));
}
return status;
}
-static int ar6000_pm_probe(struct platform_device *pdev)
-{
- return 0;
-}
-
-static int ar6000_pm_remove(struct platform_device *pdev)
-{
- return 0;
-}
-
-static int ar6000_pm_suspend(struct platform_device *pdev, pm_message_t state)
-{
- return 0;
-}
-
-static int ar6000_pm_resume(struct platform_device *pdev)
-{
- return 0;
-}
-
-static struct platform_driver ar6000_pm_device = {
- .probe = ar6000_pm_probe,
- .remove = ar6000_pm_remove,
- .suspend = ar6000_pm_suspend,
- .resume = ar6000_pm_resume,
- .driver = {
- .name = "wlan_ar6000_pm",
- },
-};
#endif /* CONFIG_PM */
int
status = ar6000_update_wlan_pwr_state(ar, state, false);
return status;
}
-
-int ar6000_pm_init()
-{
- int r;
- A_REGISTER_MODULE_DEBUG_INFO(pm);
-
-#ifdef CONFIG_PM
- /*
- * Register ar6000_pm_device into system.
- * We should also add platform_device into the first item of array
- * of devices[] in file arch/xxx/mach-xxx/board-xxxx.c
- */
- r = platform_driver_register(&ar6000_pm_device);
- if (r < 0)
- return -ENODEV;
-#endif /* CONFIG_PM */
-
- return 0;
-}
-
-void ar6000_pm_exit()
-{
-#ifdef CONFIG_PM
- platform_driver_unregister(&ar6000_pm_device);
-#endif /* CONFIG_PM */
-}
void ar6000_check_wow_status(struct ar6_softc *ar, struct sk_buff *skb, bool isEvent);
#endif
-int ar6000_pm_init(void);
-void ar6000_pm_exit(void);
-
#ifdef CONFIG_AP_VIRTUAL_ADAPTER_SUPPORT
int ar6000_add_ap_interface(struct ar6_softc *ar, char *ifname);
int ar6000_remove_ap_interface(struct ar6_softc *ar);