diff options
| author | Zihao Tang <[email protected]> | 2021-05-13 11:01:35 +0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2021-05-13 18:29:11 +0200 |
| commit | 0ebee1ebbc72c9706e5dc1df4f503e8876fd4ebe (patch) | |
| tree | 1935a7237e1c9c155da0631251f72390a827716b | |
| parent | 27bcf79b8adbdcda0abfa6bcbac59fdaf7ae7568 (diff) | |
tty: serial: icom: 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: Zihao Tang <[email protected]>
Signed-off-by: Jay Fang <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/tty/serial/icom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/icom.c b/drivers/tty/serial/icom.c index 9e9abfc4824a..03a2fe9f4c9a 100644 --- a/drivers/tty/serial/icom.c +++ b/drivers/tty/serial/icom.c @@ -37,7 +37,7 @@ #include <linux/firmware.h> #include <linux/bitops.h> -#include <asm/io.h> +#include <linux/io.h> #include <asm/irq.h> #include <linux/uaccess.h> |