From: Masahiro Yamada Date: Fri, 15 May 2015 13:05:18 +0000 (+0900) Subject: include: introduce include/linux/io.h as a wrapper of asm/io.h X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=af22ac660a5b007938acce4e83d79dd2a0a0b0d8;p=project%2Fbcm63xx%2Fu-boot.git include: introduce include/linux/io.h as a wrapper of asm/io.h In the latest Linux coding style, should be included rather than . To follow this standard also in U-Boot, add include/linux/io.h. Currently, it just includes . Signed-off-by: Masahiro Yamada --- diff --git a/include/linux/io.h b/include/linux/io.h new file mode 100644 index 0000000000..1b36a2299e --- /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 + +#endif /* _LINUX_IO_H */