| 1842 | } |
| 1843 | |
| 1844 | static inline u64 |
| 1845 | rd64(struct txgbe_hw *hw, u32 reg) |
| 1846 | { |
| 1847 | u64 lsb = rd32(hw, reg); |
| 1848 | u64 msb = rd32(hw, reg + 4); |
| 1849 | return (lsb | msb << 32); |
| 1850 | } |
| 1851 | |
| 1852 | static inline void |
| 1853 | wr64(struct txgbe_hw *hw, u32 reg, u64 val) |
no test coverage detected