i2c: Constify i2c_client where possible
Helper functions for I2C and SMBus transactions don't modify the i2c_client that is passed to them, so it can be marked const. Signed-off-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
committed by
Jean Delvare
parent
af5a60baae
commit
0cc43a1806
@@ -106,9 +106,9 @@ struct ds1307 {
|
||||
struct i2c_client *client;
|
||||
struct rtc_device *rtc;
|
||||
struct work_struct work;
|
||||
s32 (*read_block_data)(struct i2c_client *client, u8 command,
|
||||
s32 (*read_block_data)(const struct i2c_client *client, u8 command,
|
||||
u8 length, u8 *values);
|
||||
s32 (*write_block_data)(struct i2c_client *client, u8 command,
|
||||
s32 (*write_block_data)(const struct i2c_client *client, u8 command,
|
||||
u8 length, const u8 *values);
|
||||
};
|
||||
|
||||
@@ -158,8 +158,8 @@ MODULE_DEVICE_TABLE(i2c, ds1307_id);
|
||||
|
||||
#define BLOCK_DATA_MAX_TRIES 10
|
||||
|
||||
static s32 ds1307_read_block_data_once(struct i2c_client *client, u8 command,
|
||||
u8 length, u8 *values)
|
||||
static s32 ds1307_read_block_data_once(const struct i2c_client *client,
|
||||
u8 command, u8 length, u8 *values)
|
||||
{
|
||||
s32 i, data;
|
||||
|
||||
@@ -172,7 +172,7 @@ static s32 ds1307_read_block_data_once(struct i2c_client *client, u8 command,
|
||||
return i;
|
||||
}
|
||||
|
||||
static s32 ds1307_read_block_data(struct i2c_client *client, u8 command,
|
||||
static s32 ds1307_read_block_data(const struct i2c_client *client, u8 command,
|
||||
u8 length, u8 *values)
|
||||
{
|
||||
u8 oldvalues[I2C_SMBUS_BLOCK_MAX];
|
||||
@@ -198,7 +198,7 @@ static s32 ds1307_read_block_data(struct i2c_client *client, u8 command,
|
||||
return length;
|
||||
}
|
||||
|
||||
static s32 ds1307_write_block_data(struct i2c_client *client, u8 command,
|
||||
static s32 ds1307_write_block_data(const struct i2c_client *client, u8 command,
|
||||
u8 length, const u8 *values)
|
||||
{
|
||||
u8 currvalues[I2C_SMBUS_BLOCK_MAX];
|
||||
|
Reference in New Issue
Block a user