You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
187 B
9 lines
187 B
8 months ago
|
#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
|