aboutsummaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorGrant Likely <[email protected]>2009-10-15 10:57:51 -0600
committerGrant Likely <[email protected]>2009-10-15 10:57:51 -0600
commit61e955db539e748cff2b8ea3bf7705259ebe9fb6 (patch)
tree444514538ef891634b7161655f5300d90cae936e /include/linux
parent6f1924928377bd035a9f64466f91a487c69271d2 (diff)
of: Move OF_IS_DYNAMIC and OF_MARK_DYNAMIC macros to of.h
Merge of common code duplicated between Sparc, PowerPC and Microblaze Signed-off-by: Grant Likely <[email protected]> Acked-by: David S. Miller <[email protected]> Acked-by: Wolfram Sang <[email protected]> Acked-by: Michal Simek <[email protected]> Acked-by: Stephen Neuendorffer <[email protected]> Acked-by: Stephen Rothwell <[email protected]>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/of.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/of.h b/include/linux/of.h
index 65a158dc7257..a66c1eb31693 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -69,6 +69,9 @@ struct device_node {
#define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */
#define OF_DETACHED 2 /* node has been detached from the device tree */
+#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
+#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)
+
#define OF_BAD_ADDR ((u64)-1)
extern struct device_node *of_find_node_by_name(struct device_node *from,