diff options
author | PrasannaKumar Muralidharan <prasannatsmkumar@gmail.com> | 2016-09-06 04:28:39 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-09-13 08:27:21 -0400 |
commit | a826806b7c598f65a7b1322235ab049b1cbd8b16 (patch) | |
tree | 0e3f1bb50ae6752627bf81f3daf79c5a0afb65bb | |
parent | 1d1f98d180fff442f69813c278bb7c618687757b (diff) |
hwrng: pasemi - Use linux/io.h instead of asm/io.h
Checkpatch.pl warns about usage of asm/io.h. Use linux/io.h instead.
Signed-off-by: PrasannaKumar Muralidharan <prasannatsmkumar@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | drivers/char/hw_random/pasemi-rng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/hw_random/pasemi-rng.c b/drivers/char/hw_random/pasemi-rng.c index b4e32f7ab6af..545df485bcc4 100644 --- a/drivers/char/hw_random/pasemi-rng.c +++ b/drivers/char/hw_random/pasemi-rng.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <linux/delay.h> | 26 | #include <linux/delay.h> |
27 | #include <linux/of_address.h> | 27 | #include <linux/of_address.h> |
28 | #include <linux/of_platform.h> | 28 | #include <linux/of_platform.h> |
29 | #include <asm/io.h> | 29 | #include <linux/io.h> |
30 | 30 | ||
31 | #define SDCRNG_CTL_REG 0x00 | 31 | #define SDCRNG_CTL_REG 0x00 |
32 | #define SDCRNG_CTL_FVLD_M 0x0000f000 | 32 | #define SDCRNG_CTL_FVLD_M 0x0000f000 |