|
@@ -238,13 +238,6 @@ static inline unsigned long of_read_ulong(const __be32 *cell, int size)
|
|
|
#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
|
|
|
#endif
|
|
|
|
|
|
-/* Default string compare functions, Allow arch asm/prom.h to override */
|
|
|
-#if !defined(of_compat_cmp)
|
|
|
-#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
|
|
|
-#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
|
|
|
-#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
|
|
|
-#endif
|
|
|
-
|
|
|
#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
|
|
|
#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)
|
|
|
|
|
@@ -726,6 +719,13 @@ static inline void of_property_clear_flag(struct property *p, unsigned long flag
|
|
|
#define of_match_node(_matches, _node) NULL
|
|
|
#endif /* CONFIG_OF */
|
|
|
|
|
|
+/* Default string compare functions, Allow arch asm/prom.h to override */
|
|
|
+#if !defined(of_compat_cmp)
|
|
|
+#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
|
|
|
+#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
|
|
|
+#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
|
|
|
+#endif
|
|
|
+
|
|
|
#if defined(CONFIG_OF) && defined(CONFIG_NUMA)
|
|
|
extern int of_node_to_nid(struct device_node *np);
|
|
|
#else
|