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