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

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

media: pci: 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>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent ea9b0f31
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -301,7 +301,7 @@ static u32 cobalt_func(struct i2c_adapter *adap)
}

/* template for i2c-bit-algo */
static struct i2c_adapter cobalt_i2c_adap_template = {
static const struct i2c_adapter cobalt_i2c_adap_template = {
	.name = "cobalt i2c driver",
	.algo = NULL,                   /* set by i2c-algo-bit */
	.algo_data = NULL,              /* filled from template */
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ static int cx18_getsda(void *data)
}

/* template for i2c-bit-algo */
static struct i2c_adapter cx18_i2c_adap_template = {
static const struct i2c_adapter cx18_i2c_adap_template = {
	.name = "cx18 i2c driver",
	.algo = NULL,                   /* set by i2c-algo-bit */
	.algo_data = NULL,              /* filled from template */
+1 −1
Original line number Diff line number Diff line
@@ -264,7 +264,7 @@ static const struct i2c_algorithm cx23885_i2c_algo_template = {

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

static struct i2c_adapter cx23885_i2c_adap_template = {
static const struct i2c_adapter cx23885_i2c_adap_template = {
	.name              = "cx23885",
	.owner             = THIS_MODULE,
	.algo              = &cx23885_i2c_algo_template,
+1 −1
Original line number Diff line number Diff line
@@ -285,7 +285,7 @@ static const struct i2c_algorithm cx25821_i2c_algo_template = {
#endif
};

static struct i2c_adapter cx25821_i2c_adap_template = {
static const struct i2c_adapter cx25821_i2c_adap_template = {
	.name = "cx25821",
	.owner = THIS_MODULE,
	.algo = &cx25821_i2c_algo_template,
+2 −2
Original line number Diff line number Diff line
@@ -632,7 +632,7 @@ static const struct i2c_algorithm ivtv_algo = {
};

/* template for our-bit banger */
static struct i2c_adapter ivtv_i2c_adap_hw_template = {
static const struct i2c_adapter ivtv_i2c_adap_hw_template = {
	.name = "ivtv i2c driver",
	.algo = &ivtv_algo,
	.algo_data = NULL,			/* filled from template */
@@ -682,7 +682,7 @@ static int ivtv_getsda_old(void *data)
}

/* template for i2c-bit-algo */
static struct i2c_adapter ivtv_i2c_adap_template = {
static const struct i2c_adapter ivtv_i2c_adap_template = {
	.name = "ivtv i2c driver",
	.algo = NULL,                   /* set by i2c-algo-bit */
	.algo_data = NULL,              /* filled from template */
Loading