diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-05-29 17:30:00 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-05-31 02:53:56 +0900 |
commit | f6e7f07c17bdf4c9c4c03375dc913b77c39dbe1d (patch) | |
tree | dc7c40878452b0131e5a0ce1c8f241907d324e55 /drivers/i2c | |
parent | 012681b1fa822492bb8fdc5c2dd3d24d6092e110 (diff) | |
download | u-boot-f6e7f07c17bdf4c9c4c03375dc913b77c39dbe1d.tar.gz u-boot-f6e7f07c17bdf4c9c4c03375dc913b77c39dbe1d.tar.xz u-boot-f6e7f07c17bdf4c9c4c03375dc913b77c39dbe1d.zip |
ARM: UniPhier: replace <asm/io.h> with <linux/io.h>
In the Linux coding style, it is recommended to include <linux/io.h>
rather than <asm/io.h>. Follow this trend.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/i2c-uniphier-f.c | 6 | ||||
-rw-r--r-- | drivers/i2c/i2c-uniphier.c | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/drivers/i2c/i2c-uniphier-f.c b/drivers/i2c/i2c-uniphier-f.c index d29dd4565d..b3349af9e1 100644 --- a/drivers/i2c/i2c-uniphier-f.c +++ b/drivers/i2c/i2c-uniphier-f.c @@ -1,14 +1,12 @@ /* - * Copyright (C) 2014 Panasonic Corporation - * Copyright (C) 2015 Socionext Inc. - * Author: Masahiro Yamada <yamada.masahiro@socionext.com> + * Copyright (C) 2014-2015 Masahiro Yamada <yamada.masahiro@socionext.com> * * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <linux/types.h> -#include <asm/io.h> +#include <linux/io.h> #include <asm/errno.h> #include <dm/device.h> #include <dm/root.h> diff --git a/drivers/i2c/i2c-uniphier.c b/drivers/i2c/i2c-uniphier.c index c4972ff501..85b9eff5f8 100644 --- a/drivers/i2c/i2c-uniphier.c +++ b/drivers/i2c/i2c-uniphier.c @@ -1,14 +1,12 @@ /* - * Copyright (C) 2014 Panasonic Corporation - * Copyright (C) 2015 Socionext Inc. - * Author: Masahiro Yamada <yamada.masahiro@socionext.com> + * Copyright (C) 2014-2015 Masahiro Yamada <yamada.masahiro@socionext.com> * * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <linux/types.h> -#include <asm/io.h> +#include <linux/io.h> #include <asm/errno.h> #include <dm/device.h> #include <dm/root.h> |