diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-03-18 12:58:08 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-18 13:40:06 -0700 |
commit | 5851fadce8824d5d4b8fd02c22ae098401f6489e (patch) | |
tree | c06fcf0d444658c82bbfbdcd7609bed44067ac7d | |
parent | d9c1e9a8fff512bb6c43461181d4360f1c8cfd6d (diff) |
[PATCH] Fix build error due to not including <linux/errno.h>
Since d9a9cdfb078d755e648d53ec25b7370f84ee5729 <linux/sysfs.h> is using
ENOSYS without including <linux/errno.h> if CONFIG_SYSFS is disabled.
Fixed by including <linux/errno.h>.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/sysfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sysfs.h b/include/linux/sysfs.h index 0544edda716..fea9a6b3fb7 100644 --- a/include/linux/sysfs.h +++ b/include/linux/sysfs.h @@ -11,6 +11,7 @@ #define _SYSFS_H_ #include <linux/compiler.h> +#include <linux/errno.h> #include <linux/list.h> #include <asm/atomic.h> |