mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
10 lines
188 B
C
10 lines
188 B
C
#ifndef _MII_PHY_H_
|
|
#define _MII_PHY_H_
|
|
|
|
void mii_discover_phy(void);
|
|
unsigned short mii_phy_read(unsigned short reg);
|
|
void mii_phy_write(unsigned short reg, unsigned short val);
|
|
|
|
#endif
|
|
|