]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
media: pci: make i2c_client const
authorBhumika Goyal <bhumirks@gmail.com>
Mon, 28 Aug 2017 07:42:09 +0000 (03:42 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Sat, 23 Sep 2017 12:28:03 +0000 (08:28 -0400)
Make these const as they are only used in a copy operation.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Hans Verkuil <hansverk@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/pci/cx23885/cx23885-i2c.c
drivers/media/pci/cx25821/cx25821-i2c.c
drivers/media/pci/ivtv/ivtv-i2c.c
drivers/media/pci/saa7134/saa7134-i2c.c
drivers/media/pci/saa7164/saa7164-i2c.c

index 0f21467ae88eba43c5aa80f0582965935b27e120..ef863492c0ac7be67824e81057285ccd1ed5b3bf 100644 (file)
@@ -270,7 +270,7 @@ static const struct i2c_adapter cx23885_i2c_adap_template = {
        .algo              = &cx23885_i2c_algo_template,
 };
 
-static struct i2c_client cx23885_i2c_client_template = {
+static const struct i2c_client cx23885_i2c_client_template = {
        .name   = "cx23885 internal",
 };
 
index 000049d3c71bca01965fbf86c48913eaf6d67490..31479a41f359dfe589f395bd62346a93d82bb71b 100644 (file)
@@ -291,7 +291,7 @@ static const struct i2c_adapter cx25821_i2c_adap_template = {
        .algo = &cx25821_i2c_algo_template,
 };
 
-static struct i2c_client cx25821_i2c_client_template = {
+static const struct i2c_client cx25821_i2c_client_template = {
        .name = "cx25821 internal",
 };
 
index 5a35e366f4c08f97802b1bc4357b8e64616c718a..893962ac85debbb7cca4619d77c2ba42603d7f28 100644 (file)
@@ -700,7 +700,7 @@ static const struct i2c_algo_bit_data ivtv_i2c_algo_template = {
        .timeout        = IVTV_ALGO_BIT_TIMEOUT * HZ,         /* jiffies */
 };
 
-static struct i2c_client ivtv_i2c_client_template = {
+static const struct i2c_client ivtv_i2c_client_template = {
        .name = "ivtv internal",
 };
 
index 8f2ed632840f7bb85dc048f34cfdefe6270ae92e..cf1e526de56ac0fadd1c75b05b964481d8ec3e09 100644 (file)
@@ -345,7 +345,7 @@ static const struct i2c_adapter saa7134_adap_template = {
        .algo          = &saa7134_algo,
 };
 
-static struct i2c_client saa7134_client_template = {
+static const struct i2c_client saa7134_client_template = {
        .name   = "saa7134 internal",
 };
 
index 4bcde7c79dc382fc8a094b1c539748acf3fdd18a..6d13cbb9d010d556a34e44bf40d16324532b6258 100644 (file)
@@ -84,7 +84,7 @@ static const struct i2c_adapter saa7164_i2c_adap_template = {
        .algo              = &saa7164_i2c_algo_template,
 };
 
-static struct i2c_client saa7164_i2c_client_template = {
+static const struct i2c_client saa7164_i2c_client_template = {
        .name   = "saa7164 internal",
 };