nfc: pn533: constify i2c_device_id
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Mon, 21 Aug 2017 17:03:56 +0000 (22:33 +0530)
committerSamuel Ortiz <sameo@linux.intel.com>
Sun, 5 Nov 2017 23:56:55 +0000 (00:56 +0100)
i2c_device_id are not supposed to change at runtime. All functions
working with i2c_device_id provided by <linux/i2c.h> work with
const i2c_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/nfc/pn533/i2c.c

index 8f60ce039b0d43191cf9921877564aa920a5abfd..4389eb4c8d0b3cbead89b907986a6a90b17cc1cf 100644 (file)
@@ -264,7 +264,7 @@ static const struct of_device_id of_pn533_i2c_match[] = {
 };
 MODULE_DEVICE_TABLE(of, of_pn533_i2c_match);
 
-static struct i2c_device_id pn533_i2c_id_table[] = {
+static const struct i2c_device_id pn533_i2c_id_table[] = {
        { PN533_I2C_DRIVER_NAME, 0 },
        {}
 };