diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-06-22 02:07:29 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-06-24 02:15:15 -0400 |
commit | 6d307724cb6a6b8466cad4fdf13d8a409bc2433f (patch) | |
tree | 66809731d2a7257f23b8583c69b7bd71a83d634c /arch/sparc64 | |
parent | 6760d28bc691bb255c501c9b680f2fc1162258b2 (diff) |
[SPARC64]: Add of_getintprop_default().
This encodes a common idiomatic coding pattern used when
dealing with integer properties.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64')
-rw-r--r-- | arch/sparc64/kernel/prom.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/sparc64/kernel/prom.c b/arch/sparc64/kernel/prom.c index fd46e94ce06b..0a32b1064dfb 100644 --- a/arch/sparc64/kernel/prom.c +++ b/arch/sparc64/kernel/prom.c | |||
@@ -104,6 +104,18 @@ struct property *of_find_property(struct device_node *np, const char *name, | |||
104 | return pp; | 104 | return pp; |
105 | } | 105 | } |
106 | 106 | ||
107 | int of_getintprop_default(struct device_node *np, const char *name, int def) | ||
108 | { | ||
109 | struct property *prop; | ||
110 | int len; | ||
111 | |||
112 | prop = of_find_property(np, name, &len); | ||
113 | if (!prop || len != 4) | ||
114 | return def; | ||
115 | |||
116 | return *(int *) prop->value; | ||
117 | } | ||
118 | |||
107 | static unsigned int prom_early_allocated; | 119 | static unsigned int prom_early_allocated; |
108 | 120 | ||
109 | static void * __init prom_early_alloc(unsigned long size) | 121 | static void * __init prom_early_alloc(unsigned long size) |