diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 20:17:13 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-16 21:10:28 +0100 |
commit | da2ff527e44bf3af851c1e5d9ac82d248df35417 (patch) | |
tree | 37345a229622c302b6a46390c70ca4d41f8cf132 /drivers/char/hw_random/powernv-rng.c | |
parent | misc: constify of_device_id array (diff) | |
download | linux-da2ff527e44bf3af851c1e5d9ac82d248df35417.tar.xz linux-da2ff527e44bf3af851c1e5d9ac82d248df35417.zip |
char: constify of_device_id array
of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char/hw_random/powernv-rng.c')
-rw-r--r-- | drivers/char/hw_random/powernv-rng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/hw_random/powernv-rng.c b/drivers/char/hw_random/powernv-rng.c index 3f4f63204560..263a5bb8e605 100644 --- a/drivers/char/hw_random/powernv-rng.c +++ b/drivers/char/hw_random/powernv-rng.c @@ -61,7 +61,7 @@ static int powernv_rng_probe(struct platform_device *pdev) return 0; } -static struct of_device_id powernv_rng_match[] = { +static const struct of_device_id powernv_rng_match[] = { { .compatible = "ibm,power-rng",}, {}, }; |