Source
200
200
return of_reconfig_notify(action, &pr);
201
201
}
202
202
203
203
static void __of_attach_node(struct device_node *np)
204
204
{
205
205
const __be32 *phandle;
206
206
int sz;
207
207
208
208
if (!of_node_check_flag(np, OF_OVERLAY)) {
209
209
np->name = __of_get_property(np, "name", NULL);
210
-
np->type = __of_get_property(np, "device_type", NULL);
211
210
if (!np->name)
212
211
np->name = "<NULL>";
213
-
if (!np->type)
214
-
np->type = "<NULL>";
215
212
216
213
phandle = __of_get_property(np, "phandle", &sz);
217
214
if (!phandle)
218
215
phandle = __of_get_property(np, "linux,phandle", &sz);
219
216
if (IS_ENABLED(CONFIG_PPC_PSERIES) && !phandle)
220
217
phandle = __of_get_property(np, "ibm,phandle", &sz);
221
218
if (phandle && (sz >= 4))
222
219
np->phandle = be32_to_cpup(phandle);
223
220
else
224
221
np->phandle = 0;