25 lines
399 B
C
25 lines
399 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2016 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __MT_SPM_REG_H___
|
|
#define __MT_SPM_REG_H___
|
|
|
|
#if defined(CONFIG_MACH_MT6763)
|
|
|
|
#include "spm_v4/mtk_spm_reg_mt6763.h"
|
|
|
|
#elif defined(CONFIG_MACH_MT6739)
|
|
|
|
#include "spm_v4/mtk_spm_reg_mt6739.h"
|
|
|
|
#elif defined(CONFIG_MACH_MT6771)
|
|
|
|
#include "spm_v4/mtk_spm_reg_mt6771.h"
|
|
|
|
#endif
|
|
|
|
#endif /* __MT_SPM_REG_H___ */
|
|
|