Clears the link status of the external PHY. \param ui32Base is the base address of the controller. This function is used to clear the link status of the external PHY when the link is lost due to a disconnect or EEE mode link is not established. \return None.
| 4884 | // |
| 4885 | //***************************************************************************** |
| 4886 | void |
| 4887 | EMACLPILinkClear(uint32_t ui32Base) |
| 4888 | { |
| 4889 | // |
| 4890 | // Parameter sanity check. |
| 4891 | // |
| 4892 | ASSERT(ui32Base == EMAC0_BASE); |
| 4893 | |
| 4894 | // |
| 4895 | // Configure the LPI Control registers. |
| 4896 | // |
| 4897 | HWREG(ui32Base + EMAC_O_LPICTLSTAT) &= ~(EMAC_LPICTLSTAT_PLS); |
| 4898 | } |
| 4899 | |
| 4900 | //***************************************************************************** |
| 4901 | // |
no outgoing calls
no test coverage detected