lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 26 Aug 2017 11:55:41 +0530 From: Arvind Yadav <arvind.yadav.cs@...il.com> To: sameo@...ux.intel.com, gregkh@...uxfoundation.org, tomas.winkler@...el.com Cc: linux-kernel@...r.kernel.org, linux-wireless@...r.kernel.org Subject: [PATCH] nfc: microread: mei: constify mei_cl_device_id mei_cl_device_id are not supposed to change at runtime. mei driver is working with const 'id_table'. So mark the non-const mei_cl_device_id structs as const. Signed-off-by: Arvind Yadav <arvind.yadav.cs@...il.com> --- drivers/nfc/microread/mei.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/nfc/microread/mei.c b/drivers/nfc/microread/mei.c index eb5eddf..70bf7a1 100644 --- a/drivers/nfc/microread/mei.c +++ b/drivers/nfc/microread/mei.c @@ -66,7 +66,7 @@ static int microread_mei_remove(struct mei_cl_device *cldev) return 0; } -static struct mei_cl_device_id microread_mei_tbl[] = { +static const struct mei_cl_device_id microread_mei_tbl[] = { { MICROREAD_DRIVER_NAME, MEI_NFC_UUID, MEI_CL_VERSION_ANY}, /* required last entry */ -- 2.7.4
Powered by blists - more mailing lists