reconfig.c (f01387d2693813eb5271a3448e6a082322c7d75d) reconfig.c (97a9a7179aad701ab676e6f29eb90766a1acfde2)
1/*
2 * pSeries_reconfig.c - support for dynamic reconfiguration (including PCI
3 * Hotplug and Dynamic Logical Partitioning on RPA platforms).
4 *
5 * Copyright (C) 2005 Nathan Lynch
6 * Copyright (C) 2005 IBM Corporation
7 *
8 *

--- 55 unchanged lines hidden (view full) ---

64 goto out_err;
65
66 np->full_name = kstrdup(path, GFP_KERNEL);
67 if (!np->full_name)
68 goto out_err;
69
70 np->properties = proplist;
71 of_node_set_flag(np, OF_DYNAMIC);
1/*
2 * pSeries_reconfig.c - support for dynamic reconfiguration (including PCI
3 * Hotplug and Dynamic Logical Partitioning on RPA platforms).
4 *
5 * Copyright (C) 2005 Nathan Lynch
6 * Copyright (C) 2005 IBM Corporation
7 *
8 *

--- 55 unchanged lines hidden (view full) ---

64 goto out_err;
65
66 np->full_name = kstrdup(path, GFP_KERNEL);
67 if (!np->full_name)
68 goto out_err;
69
70 np->properties = proplist;
71 of_node_set_flag(np, OF_DYNAMIC);
72 of_node_init(np);
72
73 np->parent = derive_parent(path);
74 if (IS_ERR(np->parent)) {
75 err = PTR_ERR(np->parent);
76 goto out_err;
77 }
78
79 err = of_attach_node(np);

--- 378 unchanged lines hidden ---
73
74 np->parent = derive_parent(path);
75 if (IS_ERR(np->parent)) {
76 err = PTR_ERR(np->parent);
77 goto out_err;
78 }
79
80 err = of_attach_node(np);

--- 378 unchanged lines hidden ---