1
0
Fork 0

include: introduce include/linux/io.h as a wrapper of asm/io.h

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>
utp
Masahiro Yamada 2015-05-15 22:05:18 +09:00 committed by Tom Rini
parent 33665f7cc9
commit af22ac660a
1 changed files with 10 additions and 0 deletions

10
include/linux/io.h 100644
View File

@ -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 */