diff mbox

[U-Boot,RESEND,02/10] Add <linux/errno.h> as a wrapper of <asm-generic/errno.h>

Message ID 1474424946-16085-3-git-send-email-yamada.masahiro@socionext.com
State Accepted
Commit 519d9424c33026677868e3b29203120261516996
Delegated to: Tom Rini
Headers show

Commit Message

Masahiro Yamada Sept. 21, 2016, 2:28 a.m. UTC
This will be used to consolidate errno.h variants.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 include/linux/errno.h | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 include/linux/errno.h

Comments

Simon Glass Sept. 23, 2016, 4:16 a.m. UTC | #1
On 20 September 2016 at 20:28, Masahiro Yamada
<yamada.masahiro@socionext.com> wrote:
> This will be used to consolidate errno.h variants.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>
>  include/linux/errno.h | 6 ++++++
>  1 file changed, 6 insertions(+)
>  create mode 100644 include/linux/errno.h

Reviewed-by: Simon Glass <sjg@chromium.org>
Tom Rini Sept. 24, 2016, 2:28 a.m. UTC | #2
On Wed, Sep 21, 2016 at 11:28:54AM +0900, Masahiro Yamada wrote:

> This will be used to consolidate errno.h variants.
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/include/linux/errno.h b/include/linux/errno.h
new file mode 100644
index 0000000..4762ae9
--- /dev/null
+++ b/include/linux/errno.h
@@ -0,0 +1,6 @@ 
+#ifndef _LINUX_ERRNO_H
+#define _LINUX_ERRNO_H
+
+#include <asm-generic/errno.h>
+
+#endif