| 306 | } |
| 307 | |
| 308 | static int bnxt_alloc_link_info(struct bnxt *bp) |
| 309 | { |
| 310 | bp->link_info = |
| 311 | rte_zmalloc("bnxt_link_info", sizeof(struct bnxt_link_info), 0); |
| 312 | if (bp->link_info == NULL) |
| 313 | return -ENOMEM; |
| 314 | |
| 315 | return 0; |
| 316 | } |
| 317 | |
| 318 | static int bnxt_alloc_leds_info(struct bnxt *bp) |
| 319 | { |
no test coverage detected