1 /* SPDX-License-Identifier: GPL-2.0-only OR MIT */ 2 3 #ifndef SOC_MEDIATEK_CHIP_H 4 #define SOC_MEDIATEK_CHIP_H 5 6 #include <soc/pcie_common.h> 7 8 struct soc_mediatek_mt8195_config { 9 struct mtk_pcie_config pcie_config; 10 }; 11 12 typedef struct soc_mediatek_mt8195_config mtk_soc_config_t; 13 14 #endif /* SOC_MEDIATEK_CHIP_H */ 15