projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33665f7
)
include: introduce include/linux/io.h as a wrapper of asm/io.h
author
Masahiro Yamada
<yamada.masahiro@socionext.com>
Fri, 15 May 2015 13:05:18 +0000
(22:05 +0900)
committer
Tom Rini
<trini@konsulko.com>
Thu, 28 May 2015 12:18:19 +0000
(08:18 -0400)
In the latest Linux coding style, <linux/io.h> should be included
rather than <asm/io.h>. To follow this standard also in U-Boot,
add include/linux/io.h. Currently, it just includes <asm/io.h>.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
include/linux/io.h
[new file with mode: 0644]
patch
|
blob
diff --git a/include/linux/io.h
b/include/linux/io.h
new file mode 100644
(file)
index 0000000..
1b36a22
--- /dev/null
+++ b/
include/linux/io.h
@@ -0,0
+1,10
@@
+/*
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef _LINUX_IO_H
+#define _LINUX_IO_H
+
+#include <asm/io.h>
+
+#endif /* _LINUX_IO_H */