blob: 38683636634e3f9415859c437ca628004eb0b279 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef __EC_GOOGLE_CHROMEEC_I2C_TUNNEL__
#define __EC_GOOGLE_CHROMEEC_I2C_TUNNEL__
struct ec_google_chromeec_i2c_tunnel_config {
/* ACPI device name */
const char *name;
/* ACPI _UID */
unsigned int uid;
/* EC I2C bus number we tunnel to on the other side. */
unsigned int remote_bus;
};
#endif /* __EC_GOOGLE_CHROMEEC_I2C_TUNNEL__ */
|