Skip to content

Commit

Permalink
crypto: nx - constify vio_device_id
Browse files Browse the repository at this point in the history
vio_device_id are not supposed to change at runtime. All functions
working with vio_device_id provided by <asm/vio.h> work with
const vio_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
Arvind Yadav authored and Herbert Xu committed Sep 22, 2017
1 parent 560b1a8 commit 7fc342d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/crypto/nx/nx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
{ "", "" }
};
Expand Down

0 comments on commit 7fc342d

Please sign in to comment.