void pastar_suspend_late(void)
{
    u32 *ps_switch = (u32 *)(SRAM_PASTAR_DPM_INFO + PASTAR_DPM_SWITCH_OFFSET);
	if(!(*ps_switch)){        
            /* 根据nv36确定是否要关闭.产线版本不关,防止漏电;正式版本要关 */
    		LSW_DISABLE(LSW53);
	}

	return;
}
Esempio n. 2
0
void pastar_suspend_late(void)
{
    u32 *ps_switch = (u32 *)(SRAM_PASTAR_DPM_INFO + PASTAR_DPM_SWITCH_OFFSET);
	if(!(*ps_switch)){        
        if(1 == ver_flag.NV_SW_VER_Flag)   /* 正式版本,关闭LVS5 */
        {
            /* 根据nv36确定是否要关闭.产线版本不关,防止漏电;正式版本要关 */
    		LSW_DISABLE(LSW53);
        }
	}

	return;
}