From: Arvind Yadav Date: Thu, 17 Aug 2017 13:14:10 +0000 (+0530) Subject: crypto: nx - constify vio_device_id X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7fc342d2e672630fdda689a4d3d3b90745c70451;p=linux.git crypto: nx - constify vio_device_id vio_device_id are not supposed to change at runtime. All functions working with vio_device_id provided by work with const vio_device_id. So mark the non-const structs as const. Signed-off-by: Arvind Yadav Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/nx/nx.c b/drivers/crypto/nx/nx.c index 036057abb2572..3a5e31be4764d 100644 --- a/drivers/crypto/nx/nx.c +++ b/drivers/crypto/nx/nx.c @@ -833,7 +833,7 @@ static void __exit nx_fini(void) vio_unregister_driver(&nx_driver.viodriver); } -static struct vio_device_id nx_crypto_driver_ids[] = { +static const struct vio_device_id nx_crypto_driver_ids[] = { { "ibm,sym-encryption-v1", "ibm,sym-encryption" }, { "", "" } };