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