summaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/em28xx
diff options
context:
space:
mode:
authorBhumika Goyal2017-08-19 12:34:15 +0200
committerMauro Carvalho Chehab2017-08-26 14:41:58 +0200
commit6843868fd092406b544064e4db1ca902af13cf48 (patch)
treee211ed6751864ebcacebbe878f4fd4a91a790185 /drivers/media/usb/em28xx
parentmedia: radio-usb-si4713: make i2c_adapter const (diff)
downloadkernel-qcow2-linux-6843868fd092406b544064e4db1ca902af13cf48.tar.gz
kernel-qcow2-linux-6843868fd092406b544064e4db1ca902af13cf48.tar.xz
kernel-qcow2-linux-6843868fd092406b544064e4db1ca902af13cf48.zip
media: usb: make i2c_adapter const
Make these const as they are only used in a copy operation. Done using Coccinelle 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/em28xx')
-rw-r--r--drivers/media/usb/em28xx/em28xx-i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-i2c.c b/drivers/media/usb/em28xx/em28xx-i2c.c
index 60b195c157b8..66c5012a628a 100644
--- a/drivers/media/usb/em28xx/em28xx-i2c.c
+++ b/drivers/media/usb/em28xx/em28xx-i2c.c
@@ -876,7 +876,7 @@ static const struct i2c_algorithm em28xx_algo = {
.functionality = functionality,
};
-static struct i2c_adapter em28xx_adap_template = {
+static const struct i2c_adapter em28xx_adap_template = {
.owner = THIS_MODULE,
.name = "em28xx",
.algo = &em28xx_algo,