diff options
author | Christoph Hellwig <hch@lst.de> | 2016-09-22 17:48:17 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2016-09-22 18:02:55 +0300 |
commit | b536fd587044af02183b3c02690431b93154f0fa (patch) | |
tree | 34de35c65031f5f3dd69b10593b9e083f4a68ae6 /include/linux/timekeeping.h | |
parent | 3aa601492babdf3acdec89e5aa9c44e1a357a4d8 (diff) | |
download | linux-b536fd587044af02183b3c02690431b93154f0fa.tar.xz |
timekeeping: Include the correct header for errno definitions
asm-generic headers are only defaults for architectures. We need to get
the proper defintion, which goes through <linux/errno.h> and <asm/errno.h>.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Cc: john.stultz@linaro.org
Link: http://lkml.kernel.org/r/1474555697-8206-1-git-send-email-hch@lst.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/timekeeping.h')
-rw-r--r-- | include/linux/timekeeping.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/timekeeping.h b/include/linux/timekeeping.h index 816b7543f81b..09168c52ab64 100644 --- a/include/linux/timekeeping.h +++ b/include/linux/timekeeping.h @@ -1,7 +1,7 @@ #ifndef _LINUX_TIMEKEEPING_H #define _LINUX_TIMEKEEPING_H -#include <asm-generic/errno-base.h> +#include <linux/errno.h> /* Included from linux/ktime.h */ |