| 4181 | } |
| 4182 | |
| 4183 | int |
| 4184 | if_sethwassistbits(if_t ifp, int toset, int toclear) |
| 4185 | { |
| 4186 | ((struct ifnet *)ifp)->if_hwassist |= toset; |
| 4187 | ((struct ifnet *)ifp)->if_hwassist &= ~toclear; |
| 4188 | |
| 4189 | return (0); |
| 4190 | } |
| 4191 | |
| 4192 | int |
| 4193 | if_sethwassist(if_t ifp, int hwassist_bit) |
no outgoing calls
no test coverage detected