Skip to content

Commit

Permalink
crypto: nx-842 - 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 7fc342d commit f096ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/crypto/nx/nx-842-pseries.c
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ static int nx842_remove(struct vio_dev *viodev)
return 0;
}

static struct vio_device_id nx842_vio_driver_ids[] = {
static const struct vio_device_id nx842_vio_driver_ids[] = {
{"ibm,compression-v1", "ibm,compression"},
{"", ""},
};
Expand Down

0 comments on commit f096ced

Please sign in to comment.