Symbol: sgmii_ops
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
270
static struct sgmii_ops fsm9900_ops = {
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
278
static struct sgmii_ops qdf2432_ops = {
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
287
static struct sgmii_ops qdf2400_ops = {
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
297
struct sgmii_ops **sgmii_ops;
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
332
*match_data->sgmii_ops = &qdf2432_ops;
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
336
*match_data->sgmii_ops = &qdf2400_ops;
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
367
.sgmii_ops = &phy->sgmii_ops,
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
406
phy->sgmii_ops = (struct sgmii_ops *)match->data;
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
52
if (!(adpt->phy.sgmii_ops && adpt->phy.sgmii_ops->init))
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
55
return adpt->phy.sgmii_ops->init(adpt);
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
60
if (!(adpt->phy.sgmii_ops && adpt->phy.sgmii_ops->open))
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
63
return adpt->phy.sgmii_ops->open(adpt);
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
68
if (!(adpt->phy.sgmii_ops && adpt->phy.sgmii_ops->close))
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
71
adpt->phy.sgmii_ops->close(adpt);
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
76
if (!(adpt->phy.sgmii_ops && adpt->phy.sgmii_ops->link_change))
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
79
return adpt->phy.sgmii_ops->link_change(adpt, link_state);
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
84
if (!(adpt->phy.sgmii_ops && adpt->phy.sgmii_ops->reset))
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c
87
adpt->phy.sgmii_ops->reset(adpt);
drivers/net/ethernet/qualcomm/emac/emac-sgmii.h
37
struct sgmii_ops *sgmii_ops;