diff options
author | Jean Delvare <khali@linux-fr.org> | 2008-01-27 17:14:47 (GMT) |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2008-01-27 17:14:47 (GMT) |
commit | 2cdddeb8d7dd42dc1847b110228a626d25a1e468 (patch) | |
tree | b349ef86c00f4fd732266dfe6dea2fd8b74a1c52 /drivers/usb/host/ohci-pnx4008.c | |
parent | 922539a0a3c44e3b8dcf1025910f08e1940ba49f (diff) | |
download | linux-fsl-qoriq-2cdddeb8d7dd42dc1847b110228a626d25a1e468.tar.xz |
i2c: normal_i2c can be made const (remaining drivers)
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/usb/host/ohci-pnx4008.c')
-rw-r--r-- | drivers/usb/host/ohci-pnx4008.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-pnx4008.c b/drivers/usb/host/ohci-pnx4008.c index ca2a6ab..642733d 100644 --- a/drivers/usb/host/ohci-pnx4008.c +++ b/drivers/usb/host/ohci-pnx4008.c @@ -112,9 +112,9 @@ static int isp1301_detach(struct i2c_client *client); static int isp1301_command(struct i2c_client *client, unsigned int cmd, void *arg); -static unsigned short normal_i2c[] = +static const unsigned short normal_i2c[] = { ISP1301_I2C_ADDR, ISP1301_I2C_ADDR + 1, I2C_CLIENT_END }; -static unsigned short dummy_i2c_addrlist[] = { I2C_CLIENT_END }; +static const unsigned short dummy_i2c_addrlist[] = { I2C_CLIENT_END }; static struct i2c_client_address_data addr_data = { .normal_i2c = normal_i2c, |