* ixgbe_handle_lasi - Handle external Base T PHY interrupt * @hw: pointer to hardware structure * * Handle external Base T PHY interrupt. If high temperature * failure alarm then return error, else if link status change * then setup internal/external PHY link * * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature * failure alarm, else return PHY access status. */
| 1364 | * failure alarm, else return PHY access status. |
| 1365 | */ |
| 1366 | s32 ixgbe_handle_lasi(struct ixgbe_hw *hw) |
| 1367 | { |
| 1368 | return ixgbe_call_func(hw, hw->phy.ops.handle_lasi, (hw), |
| 1369 | IXGBE_NOT_IMPLEMENTED); |
| 1370 | } |
| 1371 | |
| 1372 | /** |
| 1373 | * ixgbe_read_analog_reg8 - Reads 8 bit analog register |
no outgoing calls
no test coverage detected