mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-08 14:23:19 +00:00
[media] constify i2c_algorithm structures
These i2c_algorithm structures are only stored in the alg field of an i2c_adapter structure, which is declared as const. This declare the structures as const as well. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r disable optional_qualifier@ identifier i; position p; @@ static struct i2c_algorithm i@p = { ... }; @ok@ identifier r.i; struct i2c_adapter e; position p; @@ e.alg = &i@p; @bad@ position p != {r.p,ok.p}; identifier r.i; @@ i@p @depends on !bad disable optional_qualifier@ identifier r.i; @@ static +const struct i2c_algorithm i = { ... }; // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
f3c4a8f8d8
commit
78f2c50bb4
@ -258,7 +258,7 @@ static u32 cx23885_functionality(struct i2c_adapter *adap)
|
||||
return I2C_FUNC_SMBUS_EMUL | I2C_FUNC_I2C;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm cx23885_i2c_algo_template = {
|
||||
static const struct i2c_algorithm cx23885_i2c_algo_template = {
|
||||
.master_xfer = i2c_xfer,
|
||||
.functionality = cx23885_functionality,
|
||||
};
|
||||
|
@ -281,7 +281,7 @@ static u32 cx25821_functionality(struct i2c_adapter *adap)
|
||||
I2C_FUNC_SMBUS_READ_WORD_DATA | I2C_FUNC_SMBUS_WRITE_WORD_DATA;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm cx25821_i2c_algo_template = {
|
||||
static const struct i2c_algorithm cx25821_i2c_algo_template = {
|
||||
.master_xfer = i2c_xfer,
|
||||
.functionality = cx25821_functionality,
|
||||
#ifdef NEED_ALGO_CONTROL
|
||||
|
@ -625,7 +625,7 @@ static u32 ivtv_functionality(struct i2c_adapter *adap)
|
||||
return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm ivtv_algo = {
|
||||
static const struct i2c_algorithm ivtv_algo = {
|
||||
.master_xfer = ivtv_xfer,
|
||||
.functionality = ivtv_functionality,
|
||||
};
|
||||
|
@ -338,7 +338,7 @@ static u32 functionality(struct i2c_adapter *adap)
|
||||
return I2C_FUNC_SMBUS_EMUL;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm saa7134_algo = {
|
||||
static const struct i2c_algorithm saa7134_algo = {
|
||||
.master_xfer = saa7134_i2c_xfer,
|
||||
.functionality = functionality,
|
||||
};
|
||||
|
@ -75,7 +75,7 @@ static u32 saa7164_functionality(struct i2c_adapter *adap)
|
||||
return I2C_FUNC_I2C;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm saa7164_i2c_algo_template = {
|
||||
static const struct i2c_algorithm saa7164_i2c_algo_template = {
|
||||
.master_xfer = i2c_xfer,
|
||||
.functionality = saa7164_functionality,
|
||||
};
|
||||
|
@ -402,7 +402,7 @@ static u32 si4713_functionality(struct i2c_adapter *adapter)
|
||||
return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm si4713_algo = {
|
||||
static const struct i2c_algorithm si4713_algo = {
|
||||
.master_xfer = si4713_transfer,
|
||||
.functionality = si4713_functionality,
|
||||
};
|
||||
|
@ -454,7 +454,7 @@ static u32 functionality(struct i2c_adapter *adap)
|
||||
return I2C_FUNC_SMBUS_EMUL | I2C_FUNC_I2C;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm cx231xx_algo = {
|
||||
static const struct i2c_algorithm cx231xx_algo = {
|
||||
.master_xfer = cx231xx_i2c_xfer,
|
||||
.functionality = functionality,
|
||||
};
|
||||
|
@ -855,7 +855,7 @@ static u32 functionality(struct i2c_adapter *i2c_adap)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm em28xx_algo = {
|
||||
static const struct i2c_algorithm em28xx_algo = {
|
||||
.master_xfer = em28xx_i2c_xfer,
|
||||
.functionality = functionality,
|
||||
};
|
||||
|
@ -191,7 +191,7 @@ static u32 go7007_functionality(struct i2c_adapter *adapter)
|
||||
return I2C_FUNC_SMBUS_BYTE_DATA;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm go7007_algo = {
|
||||
static const struct i2c_algorithm go7007_algo = {
|
||||
.smbus_xfer = go7007_smbus_xfer,
|
||||
.master_xfer = go7007_i2c_master_xfer,
|
||||
.functionality = go7007_functionality,
|
||||
|
@ -1032,7 +1032,7 @@ static u32 go7007_usb_functionality(struct i2c_adapter *adapter)
|
||||
return (I2C_FUNC_SMBUS_EMUL) & ~I2C_FUNC_SMBUS_QUICK;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm go7007_usb_algo = {
|
||||
static const struct i2c_algorithm go7007_usb_algo = {
|
||||
.master_xfer = go7007_usb_i2c_master_xfer,
|
||||
.functionality = go7007_usb_functionality,
|
||||
};
|
||||
|
@ -180,7 +180,7 @@ static u32 hdpvr_functionality(struct i2c_adapter *adapter)
|
||||
return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm hdpvr_algo = {
|
||||
static const struct i2c_algorithm hdpvr_algo = {
|
||||
.master_xfer = hdpvr_transfer,
|
||||
.functionality = hdpvr_functionality,
|
||||
};
|
||||
|
@ -235,7 +235,7 @@ static u32 functionality(struct i2c_adapter *adap)
|
||||
return I2C_FUNC_SMBUS_EMUL;
|
||||
}
|
||||
|
||||
static struct i2c_algorithm algo = {
|
||||
static const struct i2c_algorithm algo = {
|
||||
.master_xfer = stk1160_i2c_xfer,
|
||||
.functionality = functionality,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user