blob: 4c3dea0a0c42c2cb08171e102321898266617234 (
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_mt8196_config {
struct mtk_pcie_config pcie_config;
};
typedef struct soc_mediatek_mt8196_config mtk_soc_config_t;
#endif /* SOC_MEDIATEK_CHIP_H */
|