Lines Matching defs:location
264 static int eeprom_read(long ioaddr, int location);
265 static int mdio_read(int base_address, int phy_id, int location);
267 static void mdio_write(int base_address, int phy_id, int location, int value);
731 static int eeprom_read(long addr, int location)
736 int read_cmd = location | EE_ReadCmd;
794 static int mdio_read(int base_address, int phy_id, int location)
797 int mii_cmd = (0xf6 << 10) | (phy_id << 5) | location;
824 static void mdio_write(int base_address, int phy_id, int location, int value)
827 int mii_cmd = (0x5002 << 16) | (phy_id << 23) | (location<<18) | value;
830 if (location == 4 && phy_id == w840private.phys[0])