Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

nfc: nxp-nci: constify i2c_device_id

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>

authored by

Arvind Yadav and committed by
Samuel Ortiz
01e682ad ab1df981

+1 -1
+1 -1
drivers/nfc/nxp-nci/i2c.c
··· 393 393 return 0; 394 394 } 395 395 396 - static struct i2c_device_id nxp_nci_i2c_id_table[] = { 396 + static const struct i2c_device_id nxp_nci_i2c_id_table[] = { 397 397 {"nxp-nci_i2c", 0}, 398 398 {} 399 399 };