Skip to content

Commit

Permalink
i2c: pca-platform: drop gpio from platform data
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Wolfram Sang <[email protected]>
  • Loading branch information
cpackham-atlnz authored and Wolfram Sang committed Mar 24, 2018
1 parent 7562dee commit eb49778
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion arch/blackfin/mach-bf561/boards/acvilon.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ static struct resource bfin_i2c_pca_resources[] = {
};

struct i2c_pca9564_pf_platform_data pca9564_platform_data = {
.gpio = -1,
.i2c_clock_speed = 330000,
.timeout = HZ,
};
Expand Down
1 change: 0 additions & 1 deletion arch/sh/boards/board-sh7785lcr.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ static struct gpiod_lookup_table i2c_gpio_table = {
};

static struct i2c_pca9564_pf_platform_data i2c_platform_data = {
.gpio = 0,
.i2c_clock_speed = I2C_PCA_CON_330kHz,
.timeout = HZ,
};
Expand Down
3 changes: 0 additions & 3 deletions include/linux/i2c-pca-platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
#define I2C_PCA9564_PLATFORM_H

struct i2c_pca9564_pf_platform_data {
int gpio; /* pin to reset chip. driver will work when
* not supplied (negative value), but it
* cannot exit some error conditions then */
int i2c_clock_speed; /* values are defined in linux/i2c-algo-pca.h */
int timeout; /* timeout in jiffies */
};
Expand Down

0 comments on commit eb49778

Please sign in to comment.