Example #1
0
static int tv_resume(int pm_event)
{
	/* in thaw/restore process do not reset the display mode */
	if (pm_event == PM_EVENT_THAW
		|| pm_event == PM_EVENT_RESTORE)
		return 0;
	video_dac_enable(0xff);
	tv_set_current_vmode(info->vinfo->mode);
	return 0;
}
static int tv_resume(void)
{
	video_dac_enable(0xff);
	tv_set_current_vmode(info->vinfo->mode);
	return 0;
}