diff options
author | Kalle Valo <[email protected]> | 2011-10-06 15:40:44 +0300 |
---|---|---|
committer | Grant Likely <[email protected]> | 2011-10-29 12:49:40 +0200 |
commit | e51130c0f5e5ca2f5b669ca6759e0ae1aa197b63 (patch) | |
tree | f2160b4248909def62b33c24f1d1c1863781a9ce | |
parent | ec7ae517537ae5c7b0b2cd7f562dfa3e7a05b954 (diff) |
of: include errno.h
When compiling ath6kl for beagleboard (omap2plus_defconfig plus
CONFIG_ATH6KL, CONFIG_OF disable) with current linux-next compilation
fails:
include/linux/of.h:269: error: 'ENOSYS' undeclared (first use in this function)
include/linux/of.h:276: error: 'ENOSYS' undeclared (first use in this function)
include/linux/of.h:289: error: 'ENOSYS' undeclared (first use in this function)
Fix this by including errno.h from of.h.
Signed-off-by: Kalle Valo <[email protected]>
Acked-by: Geert Uytterhoeven <[email protected]>
Signed-off-by: Grant Likely <[email protected]>
-rw-r--r-- | include/linux/of.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/of.h b/include/linux/of.h index 92c40a142243..5dbe263462a9 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -17,6 +17,7 @@ */ #include <linux/types.h> #include <linux/bitops.h> +#include <linux/errno.h> #include <linux/kref.h> #include <linux/mod_devicetable.h> #include <linux/spinlock.h> |