Esempio n. 1
0
static int panel_n1_spi_resume(struct spi_device *spi)
{
	printk(KERN_INFO "\n ************ %s : %d \n", __func__, __LINE__);
    n1_panel_reconfig_pins();
    n1_panel_enable();
	return 0;
}
Esempio n. 2
0
static void n1_panel_late_resume(struct early_suspend *h)
{
	printk(KERN_INFO "\n ************ %s : %d\n", __func__, __LINE__);

	if (num_registered_fb > 0)
		fb_blank(registered_fb[0], FB_BLANK_UNBLANK);

#ifdef CONFIG_CPU_FREQ
	cpufreq_restore_default_governor(CPUFREQ_DISP_MODE);
#endif

	cmc623_resume(NULL);

	n1_panel_reconfig_pins(); //sjlee_0414 (sleep current problem)
  n1_panel_enable();
}