| 297 | } |
| 298 | |
| 299 | static int bnxt_alloc_pf_info(struct bnxt *bp) |
| 300 | { |
| 301 | bp->pf = rte_zmalloc("bnxt_pf_info", sizeof(struct bnxt_pf_info), 0); |
| 302 | if (bp->pf == NULL) |
| 303 | return -ENOMEM; |
| 304 | |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | static int bnxt_alloc_link_info(struct bnxt *bp) |
| 309 | { |
no test coverage detected