diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-21 11:28:54 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 17:53:57 -0400 |
commit | 519d9424c33026677868e3b29203120261516996 (patch) | |
tree | a61049cef5f73c22227b5db982862ea66e92219f | |
parent | b5bf5cb3b3e81298247a53d5b514cf941cd13a9f (diff) | |
download | u-boot-519d9424c33026677868e3b29203120261516996.tar.gz u-boot-519d9424c33026677868e3b29203120261516996.tar.bz2 u-boot-519d9424c33026677868e3b29203120261516996.zip |
Add <linux/errno.h> as a wrapper of <asm-generic/errno.h>
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>
-rw-r--r-- | include/linux/errno.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/errno.h b/include/linux/errno.h new file mode 100644 index 0000000000..4762ae91d0 --- /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 |