30 lines
790 B
C
30 lines
790 B
C
/*
|
|
* Copyright (c) 2011-2020 yanggq.young@allwinnertech.com
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
* the Free Software Foundation.
|
|
*/
|
|
#include "pm_types.h"
|
|
#include "pm_i.h"
|
|
|
|
/*
|
|
*********************************************************************************************************
|
|
* MEM CCU INITIALISE
|
|
*
|
|
* Description: mem interrupt initialise.
|
|
*
|
|
* Arguments : none.
|
|
*
|
|
* Returns : 0/-1;
|
|
*********************************************************************************************************
|
|
*/
|
|
__s32 mem_ccu_save(struct ccm_state *ccm_reg)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
__s32 mem_ccu_restore(struct ccm_state *ccm_reg)
|
|
{
|
|
return -1;
|
|
}
|