aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2010-02-14 09:13:50 -0500
committerGrant Likely <grant.likely@secretlab.ca>2010-02-14 09:13:50 -0500
commit7c7b60cb87547b1664a4385c187f029bf514a737 (patch)
tree8fe83905a88f4eb46bc0b8ba4df4f3e4d1b75027
parent4ef7b373df330bc0ff037dc4792d373c9346375f (diff)
of: put default string compare and #a/s-cell values into common header
Most architectures don't need to change these. Put them into common code to eliminate some duplication Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Acked-by: Michal Simek <monstr@monstr.eu>
-rw-r--r--arch/microblaze/include/asm/prom.h7
-rw-r--r--arch/powerpc/include/asm/prom.h7
-rw-r--r--include/linux/of.h13
3 files changed, 13 insertions, 14 deletions
diff --git a/arch/microblaze/include/asm/prom.h b/arch/microblaze/include/asm/prom.h
index 6c6b386cf3c6..ddc5c57eb240 100644
--- a/arch/microblaze/include/asm/prom.h
+++ b/arch/microblaze/include/asm/prom.h
@@ -26,13 +26,6 @@
26#include <asm/irq.h> 26#include <asm/irq.h>
27#include <asm/atomic.h> 27#include <asm/atomic.h>
28 28
29#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
30#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
31
32#define of_compat_cmp(s1, s2, l) strncasecmp((s1), (s2), (l))
33#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
34#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
35
36extern struct device_node *of_chosen; 29extern struct device_node *of_chosen;
37 30
38#define HAVE_ARCH_DEVTREE_FIXUPS 31#define HAVE_ARCH_DEVTREE_FIXUPS
diff --git a/arch/powerpc/include/asm/prom.h b/arch/powerpc/include/asm/prom.h
index f384db815ea8..4a5070edb4d3 100644
--- a/arch/powerpc/include/asm/prom.h
+++ b/arch/powerpc/include/asm/prom.h
@@ -23,13 +23,6 @@
23#include <asm/irq.h> 23#include <asm/irq.h>
24#include <asm/atomic.h> 24#include <asm/atomic.h>
25 25
26#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
27#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
28
29#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
30#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
31#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
32
33extern struct device_node *of_chosen; 26extern struct device_node *of_chosen;
34 27
35#define HAVE_ARCH_DEVTREE_FIXUPS 28#define HAVE_ARCH_DEVTREE_FIXUPS
diff --git a/include/linux/of.h b/include/linux/of.h
index 48b0ee6d0f76..5cd284002bf1 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -116,6 +116,19 @@ static inline unsigned long of_read_ulong(const __be32 *cell, int size)
116 116
117#include <asm/prom.h> 117#include <asm/prom.h>
118 118
119/* Default #address and #size cells. Allow arch asm/prom.h to override */
120#if !defined(OF_ROOT_NODE_ADDR_CELLS_DEFAULT)
121#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
122#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
123#endif
124
125/* Default string compare functions, Allow arch asm/prom.h to override */
126#if !defined(of_compat_cmp)
127#define of_compat_cmp(s1, s2, l) strncasecmp((s1), (s2), (l))
128#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
129#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
130#endif
131
119/* flag descriptions */ 132/* flag descriptions */
120#define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */ 133#define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */
121#define OF_DETACHED 2 /* node has been detached from the device tree */ 134#define OF_DETACHED 2 /* node has been detached from the device tree */