Home
last modified time | relevance | path

Searched refs:early_suspend (Results 1 – 5 of 5) sorted by relevance

/drivers/input/touchscreen/
Dsynaptics_i2c_rmi.c50 struct early_suspend early_suspend; member
54 static void synaptics_ts_early_suspend(struct early_suspend *h);
55 static void synaptics_ts_late_resume(struct early_suspend *h);
536 ts->early_suspend.level = EARLY_SUSPEND_LEVEL_BLANK_SCREEN + 1; in synaptics_ts_probe()
537 ts->early_suspend.suspend = synaptics_ts_early_suspend; in synaptics_ts_probe()
538 ts->early_suspend.resume = synaptics_ts_late_resume; in synaptics_ts_probe()
539 register_early_suspend(&ts->early_suspend); in synaptics_ts_probe()
561 unregister_early_suspend(&ts->early_suspend); in synaptics_ts_remove()
623 static void synaptics_ts_early_suspend(struct early_suspend *h) in synaptics_ts_early_suspend()
626 ts = container_of(h, struct synaptics_ts_data, early_suspend); in synaptics_ts_early_suspend()
[all …]
/drivers/leds/
Dledtrig-sleep.c30 static void ledtrig_sleep_early_suspend(struct early_suspend *h) in ledtrig_sleep_early_suspend()
35 static void ledtrig_sleep_early_resume(struct early_suspend *h) in ledtrig_sleep_early_resume()
40 static struct early_suspend ledtrig_sleep_early_suspend_handler = {
/drivers/misc/
Dakm8975.c54 struct early_suspend early_suspend; member
483 static void akm8975_early_suspend(struct early_suspend *handler) in akm8975_early_suspend()
486 akm = container_of(handler, struct akm8975_data, early_suspend); in akm8975_early_suspend()
494 static void akm8975_early_resume(struct early_suspend *handler) in akm8975_early_resume()
497 akm = container_of(handler, struct akm8975_data, early_suspend); in akm8975_early_resume()
662 akm->early_suspend.suspend = akm8975_early_suspend; in akm8975_probe()
663 akm->early_suspend.resume = akm8975_early_resume; in akm8975_probe()
664 register_early_suspend(&akm->early_suspend); in akm8975_probe()
/drivers/video/
Dgoldfishfb.c66 android_early_suspend_t early_suspend; member
172 struct goldfish_fb *fb = container_of(h, struct goldfish_fb, early_suspend); in goldfish_fb_early_suspend()
178 struct goldfish_fb *fb = container_of(h, struct goldfish_fb, early_suspend); in goldfish_fb_late_resume()
416 fb->early_suspend.suspend = goldfish_fb_early_suspend; in goldfish_fb_probe()
417 fb->early_suspend.resume = goldfish_fb_late_resume; in goldfish_fb_probe()
418 android_register_early_suspend(&fb->early_suspend); in goldfish_fb_probe()
443 android_unregister_early_suspend(&fb->early_suspend); in goldfish_fb_remove()
/drivers/net/wireless/bcmdhd/
Ddhd_linux.c336 struct early_suspend early_suspend; member
868 static void dhd_early_suspend(struct early_suspend *h) in dhd_early_suspend()
870 struct dhd_info *dhd = container_of(h, struct dhd_info, early_suspend); in dhd_early_suspend()
877 static void dhd_late_resume(struct early_suspend *h) in dhd_late_resume()
879 struct dhd_info *dhd = container_of(h, struct dhd_info, early_suspend); in dhd_late_resume()
3378 dhd->early_suspend.level = EARLY_SUSPEND_LEVEL_BLANK_SCREEN + 20;
3379 dhd->early_suspend.suspend = dhd_early_suspend;
3380 dhd->early_suspend.resume = dhd_late_resume;
3381 register_early_suspend(&dhd->early_suspend);
4631 if (dhd->early_suspend.suspend)
[all …]