Lines Matching refs:mii_bus
59 struct mii_bus *mii_bus; in thunder_mdiobus_pci_probe() local
78 mii_bus = devm_mdiobus_alloc_size(&pdev->dev, sizeof(*bus)); in thunder_mdiobus_pci_probe()
79 if (!mii_bus) in thunder_mdiobus_pci_probe()
81 bus = mii_bus->priv; in thunder_mdiobus_pci_probe()
82 bus->mii_bus = mii_bus; in thunder_mdiobus_pci_probe()
93 bus->mii_bus->name = KBUILD_MODNAME; in thunder_mdiobus_pci_probe()
94 snprintf(bus->mii_bus->id, MII_BUS_ID_SIZE, "%llx", r.start); in thunder_mdiobus_pci_probe()
95 bus->mii_bus->parent = &pdev->dev; in thunder_mdiobus_pci_probe()
96 bus->mii_bus->read = cavium_mdiobus_read; in thunder_mdiobus_pci_probe()
97 bus->mii_bus->write = cavium_mdiobus_write; in thunder_mdiobus_pci_probe()
99 err = of_mdiobus_register(bus->mii_bus, node); in thunder_mdiobus_pci_probe()
128 mdiobus_unregister(bus->mii_bus); in thunder_mdiobus_pci_remove()