diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-18 12:06:58 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-08-26 08:40:01 -0400 |
commit | d746cf89b4b7e60f5b7239b3ef8e8af01d11f604 (patch) | |
tree | 537c87676c2f5835b91d85e1e68b89aaeb2c1e1d /drivers/media/usb/au0828 | |
parent | 43298e768cfc2b9c810e55425e948bf6f767cc75 (diff) | |
download | linux-stable-d746cf89b4b7e60f5b7239b3ef8e8af01d11f604.tar.gz linux-stable-d746cf89b4b7e60f5b7239b3ef8e8af01d11f604.tar.bz2 linux-stable-d746cf89b4b7e60f5b7239b3ef8e8af01d11f604.zip |
media: usb: make i2c_algorithm const
Make these const as they are only used in a copy operation or
are stored in the algo field of i2c_adapter structure, which is const.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Acked-by: Mike Isely <isely@pobox.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/au0828')
-rw-r--r-- | drivers/media/usb/au0828/au0828-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/au0828/au0828-i2c.c b/drivers/media/usb/au0828/au0828-i2c.c index 42b352bb4f02..a028e3682d1c 100644 --- a/drivers/media/usb/au0828/au0828-i2c.c +++ b/drivers/media/usb/au0828/au0828-i2c.c @@ -329,7 +329,7 @@ static u32 au0828_functionality(struct i2c_adapter *adap) return I2C_FUNC_SMBUS_EMUL | I2C_FUNC_I2C; } -static struct i2c_algorithm au0828_i2c_algo_template = { +static const struct i2c_algorithm au0828_i2c_algo_template = { .master_xfer = i2c_xfer, .functionality = au0828_functionality, }; |