drivers/uart: Replace 'unsigned long int' by 'unsigned long'
[coreboot2.git] / src / ec / google / chromeec / chip.h
blob77851d1d3dbae6a9436b803618ca439f452eb672
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef EC_GOOGLE_CHROMEEC_CHIP_H
4 #define EC_GOOGLE_CHROMEEC_CHIP_H
6 #include <device/device.h>
7 #include <stddef.h>
9 #define MAX_TYPEC_PORTS 4
11 struct ec_google_chromeec_config {
12 /* Pointer to PMC Mux connector for each Type-C port */
13 DEVTREE_CONST struct device *mux_conn[MAX_TYPEC_PORTS];
14 DEVTREE_CONST struct device *retimer_conn[MAX_TYPEC_PORTS];
15 bool ec_multifan_support;
18 #endif /* EC_GOOGLE_CHROMEEC_CHIP_H */