i2c: pca-platform: drop gpio from platform data
authorChris Packham <chris.packham@alliedtelesis.co.nz>
Wed, 5 Jul 2017 10:13:58 +0000 (22:13 +1200)
committerWolfram Sang <wsa@the-dreams.de>
Sat, 24 Mar 2018 12:26:13 +0000 (13:26 +0100)
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>
arch/blackfin/mach-bf561/boards/acvilon.c
arch/sh/boards/board-sh7785lcr.c
include/linux/i2c-pca-platform.h

index 696cc9d..9dd6122 100644 (file)
@@ -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,
 };
index caec1eb..d7d232d 100644 (file)
@@ -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,
 };
index 0e5f7c7..c373294 100644 (file)
@@ -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 */
 };