Lines Matching refs:status
384 struct fixed_phy_status status = {};
390 strcmp(managed, "in-band-status") == 0) {
391 /* status is zeroed, namely its .link member */
398 status.link = 1;
399 status.duplex = of_property_read_bool(fixed_link_node,
402 &status.speed)) {
406 status.pause = of_property_read_bool(fixed_link_node, "pause");
407 status.asym_pause = of_property_read_bool(fixed_link_node,
417 status.link = 1;
418 status.duplex = fixed_link_prop[1];
419 status.speed = fixed_link_prop[2];
420 status.pause = fixed_link_prop[3];
421 status.asym_pause = fixed_link_prop[4];
428 return PTR_ERR_OR_ZERO(fixed_phy_register(PHY_POLL, &status, np));