diff options
author | Jay Fang <[email protected]> | 2021-05-10 14:58:20 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2021-05-10 13:07:50 +0100 |
commit | 66fe740317c82b0caa68ed8d756536d4ff7e910c (patch) | |
tree | 8d3a38bd4ce08ff4b20a5d113207f0a0eb172762 | |
parent | ccef8441fb2d352fa982f6607f471cdd17b30741 (diff) |
spi: ppc4xx: include <linux/io.h> instead of <asm/io.h>
Include the more general linux/io.h instead of asm/io.h
as checkpatch suggests.
Signed-off-by: Jay Fang <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/spi/spi-ppc4xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-ppc4xx.c b/drivers/spi/spi-ppc4xx.c index d8ee363fb714..9e3974551204 100644 --- a/drivers/spi/spi-ppc4xx.c +++ b/drivers/spi/spi-ppc4xx.c @@ -34,7 +34,7 @@ #include <linux/spi/spi.h> #include <linux/spi/spi_bitbang.h> -#include <asm/io.h> +#include <linux/io.h> #include <asm/dcr.h> #include <asm/dcr-regs.h> |