| 1380 | } |
| 1381 | |
| 1382 | static inline u32 |
| 1383 | rd32m(struct ngbe_hw *hw, u32 reg, u32 mask) |
| 1384 | { |
| 1385 | u32 val = rd32(hw, reg); |
| 1386 | val &= mask; |
| 1387 | return val; |
| 1388 | } |
| 1389 | |
| 1390 | static inline void |
| 1391 | wr32m(struct ngbe_hw *hw, u32 reg, u32 mask, u32 field) |
no test coverage detected