]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
nfc: pn544: constify i2c_device_id
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Mon, 21 Aug 2017 17:03:57 +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/pn544/i2c.c

index 4b14740edb672c734239eb4c26282c036009d415..d0207f8e68b7c8760d3f93c8d54a5295ae65f432 100644 (file)
@@ -54,7 +54,7 @@
 #define PN544_HCI_I2C_LLC_MAX_SIZE     (PN544_HCI_I2C_LLC_LEN_CRC + 1 + \
                                         PN544_HCI_I2C_LLC_MAX_PAYLOAD)
 
-static struct i2c_device_id pn544_hci_i2c_id_table[] = {
+static const struct i2c_device_id pn544_hci_i2c_id_table[] = {
        {"pn544", 0},
        {}
 };