From 169aa6f88620bf444c8c8c066dc6a2f9c396472a Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Mon, 27 Feb 2012 14:04:40 -0700 Subject: [PATCH] --- yaml --- r: 288347 b: refs/heads/master c: 29f141fed01a09050207c4d41fc5811520d81146 h: refs/heads/master i: 288345: 5d38f7637cca596d860afba11aa00ffa2224b462 288343: 37b6b7cc683da3c0b03e3db1a1167965f8685a3f v: v3 --- [refs] | 2 +- trunk/arch/arm/boot/.gitignore | 1 + trunk/include/linux/of.h | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index ab291e7d7a5b..9c78e12fac5f 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 14cd3c15cfc8118586262a79bfa3b3123f13e2c2 +refs/heads/master: 29f141fed01a09050207c4d41fc5811520d81146 diff --git a/trunk/arch/arm/boot/.gitignore b/trunk/arch/arm/boot/.gitignore index ce1c5ff746e7..3c79f85975aa 100644 --- a/trunk/arch/arm/boot/.gitignore +++ b/trunk/arch/arm/boot/.gitignore @@ -3,3 +3,4 @@ zImage xipImage bootpImage uImage +*.dtb diff --git a/trunk/include/linux/of.h b/trunk/include/linux/of.h index a75a831e2057..92cf6ad35e0e 100644 --- a/trunk/include/linux/of.h +++ b/trunk/include/linux/of.h @@ -281,6 +281,14 @@ static inline struct property *of_find_property(const struct device_node *np, return NULL; } +static inline struct device_node *of_find_compatible_node( + struct device_node *from, + const char *type, + const char *compat) +{ + return NULL; +} + static inline int of_property_read_u32_array(const struct device_node *np, const char *propname, u32 *out_values, size_t sz)