]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
i2c: taos-evm: Make structure tsl2550_info constant
authorNishka Dasgupta <nishkadg.linux@gmail.com>
Mon, 19 Aug 2019 07:46:01 +0000 (13:16 +0530)
committerWolfram Sang <wsa@the-dreams.de>
Thu, 29 Aug 2019 20:10:01 +0000 (22:10 +0200)
Static structure tsl2550_info, of type i2c_board_info, is referenced
only twice: the first time in arguments to dev_info() (which does not
modify it) and the second time as the last argument to function
i2c_new_device() (where the corresponding parameter is declared as
const). As tsl2550_info is therefore never modified, make it const to
protect it from unintended modifications.
Issue found with Coccinelle.

Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-taos-evm.c

index c82e78f57386e0d6b219d8a5eddff88396aea5a6..056df6b2538a734c70ef4a1bd97e46aa922d7ab9 100644 (file)
@@ -39,7 +39,7 @@ struct taos_data {
 };
 
 /* TAOS TSL2550 EVM */
-static struct i2c_board_info tsl2550_info = {
+static const struct i2c_board_info tsl2550_info = {
        I2C_BOARD_INFO("tsl2550", 0x39),
 };