Skip to content

Commit

Permalink
hwrng: pseries - 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 f096ced commit 677c4f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/hw_random/pseries-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static int pseries_rng_remove(struct vio_dev *dev)
return 0;
}

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

0 comments on commit 677c4f4

Please sign in to comment.