Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6843868f authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Mauro Carvalho Chehab
Browse files

media: usb: make i2c_adapter const



Make these const as they are only used in a copy operation.
Done using Coccinelle

Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Acked-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 9a5c43b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -336,7 +336,7 @@ static const struct i2c_algorithm au0828_i2c_algo_template = {

/* ----------------------------------------------------------------------- */

static struct i2c_adapter au0828_i2c_adap_template = {
static const struct i2c_adapter au0828_i2c_adap_template = {
	.name              = KBUILD_MODNAME,
	.owner             = THIS_MODULE,
	.algo              = &au0828_i2c_algo_template,
+1 −1
Original line number Diff line number Diff line
@@ -459,7 +459,7 @@ static const struct i2c_algorithm cx231xx_algo = {
	.functionality = functionality,
};

static struct i2c_adapter cx231xx_adap_template = {
static const struct i2c_adapter cx231xx_adap_template = {
	.owner = THIS_MODULE,
	.name = "cx231xx",
	.algo = &cx231xx_algo,
+1 −1
Original line number Diff line number Diff line
@@ -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,
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ static const struct i2c_algorithm hdpvr_algo = {
	.functionality = hdpvr_functionality,
};

static struct i2c_adapter hdpvr_i2c_adapter_template = {
static const struct i2c_adapter hdpvr_i2c_adapter_template = {
	.name   = "Hauppage HD PVR I2C",
	.owner  = THIS_MODULE,
	.algo   = &hdpvr_algo,
+1 −1
Original line number Diff line number Diff line
@@ -519,7 +519,7 @@ static const struct i2c_algorithm pvr2_i2c_algo_template = {
	.functionality = pvr2_i2c_functionality,
};

static struct i2c_adapter pvr2_i2c_adap_template = {
static const struct i2c_adapter pvr2_i2c_adap_template = {
	.owner         = THIS_MODULE,
	.class	       = 0,
};
Loading