Commit af22ac660a5b007938acce4e83d79dd2a0a0b0d8

Authored by Masahiro Yamada
Committed by Tom Rini
1 parent 33665f7cc9

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>

Showing 1 changed file with 10 additions and 0 deletions Side-by-side Diff

  1 +/*
  2 + * SPDX-License-Identifier: GPL-2.0+
  3 + */
  4 +
  5 +#ifndef _LINUX_IO_H
  6 +#define _LINUX_IO_H
  7 +
  8 +#include <asm/io.h>
  9 +
  10 +#endif /* _LINUX_IO_H */