提交 379883cc 编写于 作者: J Julia Lawall 提交者: Wolfram Sang

i2c: constify i2c_adapter_quirks structures

Check for i2c_adapter_quirks structures that are only stored in the
quirks field of an i2c_adapter structure.  This field is declared
const, so i2c_adapter_quirks structures that have this property can be
declared as const also.
Signed-off-by: NJulia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Ray Jui <ray.jui@broadcom.com> # for bcm-iproc
Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
上级 ff3a98be
...@@ -489,7 +489,7 @@ static const struct i2c_algorithm axxia_i2c_algo = { ...@@ -489,7 +489,7 @@ static const struct i2c_algorithm axxia_i2c_algo = {
.functionality = axxia_i2c_func, .functionality = axxia_i2c_func,
}; };
static struct i2c_adapter_quirks axxia_i2c_quirks = { static const struct i2c_adapter_quirks axxia_i2c_quirks = {
.max_read_len = 255, .max_read_len = 255,
.max_write_len = 255, .max_write_len = 255,
}; };
......
...@@ -395,7 +395,7 @@ static const struct i2c_algorithm bcm_iproc_algo = { ...@@ -395,7 +395,7 @@ static const struct i2c_algorithm bcm_iproc_algo = {
.functionality = bcm_iproc_i2c_functionality, .functionality = bcm_iproc_i2c_functionality,
}; };
static struct i2c_adapter_quirks bcm_iproc_i2c_quirks = { static const struct i2c_adapter_quirks bcm_iproc_i2c_quirks = {
/* need to reserve one byte in the FIFO for the slave address */ /* need to reserve one byte in the FIFO for the slave address */
.max_read_len = M_TX_RX_FIFO_SIZE - 1, .max_read_len = M_TX_RX_FIFO_SIZE - 1,
}; };
......
...@@ -182,7 +182,7 @@ static const struct i2c_algorithm dln2_i2c_usb_algorithm = { ...@@ -182,7 +182,7 @@ static const struct i2c_algorithm dln2_i2c_usb_algorithm = {
.functionality = dln2_i2c_func, .functionality = dln2_i2c_func,
}; };
static struct i2c_adapter_quirks dln2_i2c_quirks = { static const struct i2c_adapter_quirks dln2_i2c_quirks = {
.max_read_len = DLN2_I2C_MAX_XFER_SIZE, .max_read_len = DLN2_I2C_MAX_XFER_SIZE,
.max_write_len = DLN2_I2C_MAX_XFER_SIZE, .max_write_len = DLN2_I2C_MAX_XFER_SIZE,
}; };
......
...@@ -354,7 +354,7 @@ static const struct i2c_algorithm vprbrd_algorithm = { ...@@ -354,7 +354,7 @@ static const struct i2c_algorithm vprbrd_algorithm = {
.functionality = vprbrd_i2c_func, .functionality = vprbrd_i2c_func,
}; };
static struct i2c_adapter_quirks vprbrd_quirks = { static const struct i2c_adapter_quirks vprbrd_quirks = {
.max_read_len = 2048, .max_read_len = 2048,
.max_write_len = 2048, .max_write_len = 2048,
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册