blob: 34f75cc12b5b709fc5bc5204f1f9b2c8e09e3df6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __DRIVERS_I2C_TAS5825M_CHIP_H__
#define __DRIVERS_I2C_TAS5825M_CHIP_H__
struct drivers_i2c_tas5825m_config {
// Used to uniquely identify the AMP
int id;
};
#endif /* __DRIVERS_I2C_TAS5825M_CHIP_H__ */
|