diff options
author | Simon Glass <sjg@chromium.org> | 2016-05-08 16:55:17 -0600 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2016-07-05 13:19:08 -0700 |
commit | 00e9e6d1ffb9786a7ca42cc41f5320303c1ab84f (patch) | |
tree | 6132b079868dc576a106df3a3be5a299ac567584 | |
parent | f39a6a327721285aa68f7e4d57b887c165ed3f14 (diff) | |
download | u-boot-00e9e6d1ffb9786a7ca42cc41f5320303c1ab84f.zip u-boot-00e9e6d1ffb9786a7ca42cc41f5320303c1ab84f.tar.gz u-boot-00e9e6d1ffb9786a7ca42cc41f5320303c1ab84f.tar.bz2 |
errno: Add copyright header and header guard
Bring in a copyright for this file from cmd/pmic.c since this file was
submitted by the same author at around the same time. Also fix the missing
header guard.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
-rw-r--r-- | include/errno.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/errno.h b/include/errno.h index 14ac3cb..3942681 100644 --- a/include/errno.h +++ b/include/errno.h @@ -1,4 +1,11 @@ +/* + * Copyright (C) 2014 Samsung Electronics + * Przemyslaw Marczak <p.marczak@samsung.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ #ifndef _ERRNO_H +#define _ERRNO_H #include <asm-generic/errno.h> |