Lines Matching defs:location
414 /* The station address location in the EEPROM. */
421 static int eeprom_read(void __iomem *ioaddr, int location);
422 static int mdio_read(struct net_device *dev, int phy_id, int location);
423 static void mdio_write(struct net_device *dev, int phy_id, int location, int value);
715 static int eeprom_read(void __iomem *ioaddr, int location)
718 iowrite16(0x0200 | (location & 0xff), ioaddr + EECtrl);
759 static int mdio_read(struct net_device *dev, int phy_id, int location)
763 int mii_cmd = (0xf6 << 10) | (phy_id << 5) | location;
789 static void mdio_write(struct net_device *dev, int phy_id, int location, int value)
793 int mii_cmd = (0x5002 << 16) | (phy_id << 23) | (location<<18) | value;