Lines Matching refs:mii_bus
62 struct mii_bus *mii_bus; in thunder_mdiobus_pci_probe() local
81 mii_bus = devm_mdiobus_alloc_size(&pdev->dev, sizeof(*bus)); in thunder_mdiobus_pci_probe()
82 if (!mii_bus) in thunder_mdiobus_pci_probe()
84 bus = mii_bus->priv; in thunder_mdiobus_pci_probe()
85 bus->mii_bus = mii_bus; in thunder_mdiobus_pci_probe()
96 bus->mii_bus->name = KBUILD_MODNAME; in thunder_mdiobus_pci_probe()
97 snprintf(bus->mii_bus->id, MII_BUS_ID_SIZE, "%llx", r.start); in thunder_mdiobus_pci_probe()
98 bus->mii_bus->parent = &pdev->dev; in thunder_mdiobus_pci_probe()
99 bus->mii_bus->read = cavium_mdiobus_read; in thunder_mdiobus_pci_probe()
100 bus->mii_bus->write = cavium_mdiobus_write; in thunder_mdiobus_pci_probe()
102 err = of_mdiobus_register(bus->mii_bus, node); in thunder_mdiobus_pci_probe()
131 mdiobus_unregister(bus->mii_bus); in thunder_mdiobus_pci_remove()
132 mdiobus_free(bus->mii_bus); in thunder_mdiobus_pci_remove()