mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 00:36:50 +07:00
eb49778c8c
Now that the i2c-pca-plaform driver is using the device managed API for gpios there is no need for the reset gpio to be specified via i2c_pca9564_pf_platform_data. Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
11 lines
291 B
C
11 lines
291 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef I2C_PCA9564_PLATFORM_H
|
|
#define I2C_PCA9564_PLATFORM_H
|
|
|
|
struct i2c_pca9564_pf_platform_data {
|
|
int i2c_clock_speed; /* values are defined in linux/i2c-algo-pca.h */
|
|
int timeout; /* timeout in jiffies */
|
|
};
|
|
|
|
#endif /* I2C_PCA9564_PLATFORM_H */
|