• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 /*
4  * Realtek RT1011 audio codec devicetree bindings
5  */
6 
7 #ifndef __DRIVERS_I2C_RT1011_CHIP_H__
8 #define __DRIVERS_I2C_RT1011_CHIP_H__
9 
10 struct drivers_i2c_rt1011_config {
11 	const char *name; /* ACPI Device Name */
12 	const char *desc; /* Device Description */
13 	unsigned int uid; /* ACPI _UID */
14 
15 	/* The VPD key of calibrated speaker resistance. */
16 	const char *r0_calib_key;
17 	/* The VPD key of temperature during speaker calibration. */
18 	const char *temperature_calib_key;
19 };
20 
21 #endif /* __DRIVERS_I2C_RT1011_CHIP_H__ */
22