The patch adds an empty function for non-dt build, so that drivers migrating to dt can save some '#ifdef CONFIG_OF'. v3: New patch Signed-off-by: Stephen Warren <swarren@xxxxxxxxxx> --- Patch 2 relies on this patch, but this patch would typically be merged via Grant's OF/DT tree. include/linux/of.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/linux/of.h b/include/linux/of.h index 736b747..47303c7 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -302,6 +302,11 @@ static inline struct device_node *of_parse_phandle(struct device_node *np, return NULL; } +static inline int of_machine_is_compatible(const char *compat) +{ + return 0; +} + #define of_match_ptr(_ptr) NULL #endif /* CONFIG_OF */ -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html