diff options
author | Tanzir Hasan <[email protected]> | 2023-12-21 20:32:33 +0000 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2023-12-29 12:22:29 -0800 |
commit | 037d88f0dd87553871a8b143586399122adf49ba (patch) | |
tree | 3c9f69317b575a3ffcd03f068fa7fc407443a8ae | |
parent | 8e226a0a8dc8b80b792338750cd5d26675ce29bc (diff) |
lib/trace_readwrite.c:: replace asm-generic/io with linux/io
asm-generic/io.h can be replaced with linux/io.h and the file will still
build correctly. It is an asm-generic file which should be avoided if
possible.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Tanzir Hasan <[email protected]>
Suggested-by: Al Viro <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | lib/trace_readwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/trace_readwrite.c b/lib/trace_readwrite.c index 62b4e8b3c733..a94cd56a1e4c 100644 --- a/lib/trace_readwrite.c +++ b/lib/trace_readwrite.c @@ -7,7 +7,7 @@ #include <linux/ftrace.h> #include <linux/module.h> -#include <asm-generic/io.h> +#include <linux/io.h> #define CREATE_TRACE_POINTS #include <trace/events/rwmmio.h> |