Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4b23a554 authored by Jens Osterkamp's avatar Jens Osterkamp Committed by Jeff Garzik
Browse files

spidernet: move medium variable into card struct



This moves the medium variable into the spidernet card structure.
It renames the GMII_ variables to BCM54XX specific ones.

Signed-off-by: default avatarJens Osterkamp <jens@de.ibm.com>
Signed-off-by: default avatarLinas Vepstas <linas@austin.ibm.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent fc8e13da
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -1909,26 +1909,26 @@ static void spider_net_link_phy(unsigned long data)

		pr_info("%s: link is down trying to bring it up\n", card->netdev->name);

		switch (phy->medium) {
		case GMII_COPPER:
		switch (card->medium) {
		case BCM54XX_COPPER:
			/* enable fiber with autonegotiation first */
			if (phy->def->ops->enable_fiber)
				phy->def->ops->enable_fiber(phy, 1);
			phy->medium = GMII_FIBER;
			card->medium = BCM54XX_FIBER;
			break;

		case GMII_FIBER:
		case BCM54XX_FIBER:
			/* fiber didn't come up, try to disable fiber autoneg */
			if (phy->def->ops->enable_fiber)
				phy->def->ops->enable_fiber(phy, 0);
			phy->medium = GMII_UNKNOWN;
			card->medium = BCM54XX_UNKNOWN;
			break;

		case GMII_UNKNOWN:
		case BCM54XX_UNKNOWN:
			/* copper, fiber with and without failed,
			 * retry from beginning */
			spider_net_setup_aneg(card);
			phy->medium = GMII_COPPER;
			card->medium = BCM54XX_COPPER;
			break;
		}

+2 −0
Original line number Diff line number Diff line
@@ -444,6 +444,8 @@ struct spider_net_card {
	struct pci_dev *pdev;
	struct mii_phy phy;

	int medium;

	void __iomem *regs;

	struct spider_net_descr_chain tx_chain;