From: Grant Likely Date: Tue, 14 Jun 2011 17:08:07 +0000 (-0600) Subject: dt: include linux/errno.h in linux/of_address.h X-Git-Tag: next-20110726~90^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=35d2045f6a73b57287df8c1f226bb0113d9339f1;p=karo-tx-linux.git dt: include linux/errno.h in linux/of_address.h of_address.h makes reference to some of the error code #defines, so it needs to include errno.h. If CONFIG_PCI is not selected, then some files will fail to compile. Signed-off-by: Grant Likely --- diff --git a/include/linux/of_address.h b/include/linux/of_address.h index 2feda6ee6140..45af1ecdea34 100644 --- a/include/linux/of_address.h +++ b/include/linux/of_address.h @@ -1,6 +1,7 @@ #ifndef __OF_ADDRESS_H #define __OF_ADDRESS_H #include +#include #include extern u64 of_translate_address(struct device_node *np, const __be32 *addr);