25 lines
520 B
C
25 lines
520 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
/*
|
||
|
|
* Copyright (c) 2017 MediaTek Inc.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef __MT_SLEEP_H__
|
||
|
|
#define __MT_SLEEP_H__
|
||
|
|
|
||
|
|
#if defined(CONFIG_MACH_MT6757) || defined(CONFIG_MACH_KIBOPLUS)
|
||
|
|
|
||
|
|
#include "spm_v2/mtk_sleep.h"
|
||
|
|
|
||
|
|
#elif defined(CONFIG_MACH_MT6763) || defined(CONFIG_MACH_MT6739) || defined(CONFIG_MACH_MT6771)
|
||
|
|
|
||
|
|
#include "spm_v4/mtk_sleep.h"
|
||
|
|
#elif defined(CONFIG_MACH_MT6768) || defined(CONFIG_MACH_MT6785)
|
||
|
|
#include "spm_v1/mtk_sleep.h"
|
||
|
|
#else
|
||
|
|
#include "spm/mtk_sleep.h"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* __MT_SLEEP_H__ */
|
||
|
|
|