diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-21 11:28:55 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 17:55:42 -0400 |
commit | 1221ce459d04a428f8880f58581f671b736c3c27 (patch) | |
tree | 5b7bf78e1d59427ffadf0a4b71fe26994f3d042b /common | |
parent | 519d9424c33026677868e3b29203120261516996 (diff) |
treewide: replace #include <asm/errno.h> with <linux/errno.h>
Now, arch/${ARCH}/include/asm/errno.h and include/linux/errno.h have
the same content. (both just wrap <asm-generic/errno.h>)
Replace all include directives for <asm/errno.h> with <linux/errno.h>.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
[trini: Fixup include/clk.]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 2 | ||||
-rw-r--r-- | common/hash.c | 2 | ||||
-rw-r--r-- | common/image.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/common/board_f.c b/common/board_f.c index 9ef998f9ed2..2c885950782 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -49,7 +49,7 @@ #include <trace.h> #include <video.h> #include <watchdog.h> -#include <asm/errno.h> +#include <linux/errno.h> #include <asm/io.h> #include <asm/sections.h> #if defined(CONFIG_X86) || defined(CONFIG_ARC) diff --git a/common/hash.c b/common/hash.c index 41de4df5368..b645298afcd 100644 --- a/common/hash.c +++ b/common/hash.c @@ -17,7 +17,7 @@ #include <mapmem.h> #include <hw_sha.h> #include <asm/io.h> -#include <asm/errno.h> +#include <linux/errno.h> #else #include "mkimage.h" #include <time.h> diff --git a/common/image.c b/common/image.c index c8d9bc834d8..a5d19abfa93 100644 --- a/common/image.c +++ b/common/image.c @@ -38,7 +38,7 @@ #include <u-boot/md5.h> #include <u-boot/sha1.h> -#include <asm/errno.h> +#include <linux/errno.h> #include <asm/io.h> #ifdef CONFIG_CMD_BDI |