diff options
author | Nathan Fontenot <nfont@austin.ibm.com> | 2010-09-10 05:40:32 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-10-13 01:19:02 -0400 |
commit | 206489748b64510d655e5c99193426667463dd15 (patch) | |
tree | 97fbf51691618e45b9a28d6a9551d3f5b9a94c1c /arch/powerpc/platforms/pseries/dlpar.c | |
parent | 4783f393de3077211c14675a0e57c8a02e9190b0 (diff) |
powerpc/pseries: Export device tree updating routines
Export routines associated with adding and removing device tree nodes on
pseries needed for device tree updating.
Signed-off-by: Nathan Fontenot <nfont@austin.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries/dlpar.c')
-rw-r--r-- | arch/powerpc/platforms/pseries/dlpar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/pseries/dlpar.c b/arch/powerpc/platforms/pseries/dlpar.c index 72d8054fa739..75d336ab01bc 100644 --- a/arch/powerpc/platforms/pseries/dlpar.c +++ b/arch/powerpc/platforms/pseries/dlpar.c | |||
@@ -33,7 +33,7 @@ struct cc_workarea { | |||
33 | u32 prop_offset; | 33 | u32 prop_offset; |
34 | }; | 34 | }; |
35 | 35 | ||
36 | static void dlpar_free_cc_property(struct property *prop) | 36 | void dlpar_free_cc_property(struct property *prop) |
37 | { | 37 | { |
38 | kfree(prop->name); | 38 | kfree(prop->name); |
39 | kfree(prop->value); | 39 | kfree(prop->value); |
@@ -102,7 +102,7 @@ static void dlpar_free_one_cc_node(struct device_node *dn) | |||
102 | kfree(dn); | 102 | kfree(dn); |
103 | } | 103 | } |
104 | 104 | ||
105 | static void dlpar_free_cc_nodes(struct device_node *dn) | 105 | void dlpar_free_cc_nodes(struct device_node *dn) |
106 | { | 106 | { |
107 | if (dn->child) | 107 | if (dn->child) |
108 | dlpar_free_cc_nodes(dn->child); | 108 | dlpar_free_cc_nodes(dn->child); |