| 294 | } |
| 295 | |
| 296 | void |
| 297 | fman_if_enable_rx(struct fman_if *p) |
| 298 | { |
| 299 | struct __fman_if *__if = container_of(p, struct __fman_if, __if); |
| 300 | |
| 301 | assert(fman_ccsr_map_fd != -1); |
| 302 | |
| 303 | /* enable Rx and Tx */ |
| 304 | out_be32(__if->ccsr_map + 8, in_be32(__if->ccsr_map + 8) | 3); |
| 305 | } |
| 306 | |
| 307 | void |
| 308 | fman_if_disable_rx(struct fman_if *p) |
no test coverage detected