| 808 | } |
| 809 | |
| 810 | static BOOL linkState(void) { |
| 811 | u8 nways; |
| 812 | |
| 813 | nways = readcmd(0x0031); |
| 814 | if ((nways & 1) != 0 || (nways & 2) != 0) { |
| 815 | return TRUE; |
| 816 | } |
| 817 | |
| 818 | return FALSE; |
| 819 | } |
| 820 | |
| 821 | static BOOL ETHGetLinkState(void) { |
| 822 | BOOL ret; |
no test coverage detected