mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
add missing length argument
This commit is contained in:
parent
2ed19d58c3
commit
3486bfe084
2 changed files with 2 additions and 2 deletions
|
|
@ -905,7 +905,7 @@ isp_pci_mbxdma(struct ispsoftc *isp)
|
|||
if (bus_dmamem_alloc(pci->cntrol_dmat, (void **)&base,
|
||||
BUS_DMA_NOWAIT, &pci->cntrol_dmap) != 0) {
|
||||
isp_prt(isp, ISP_LOGERR,
|
||||
"cannot allocate %d bytes of CCB memory");
|
||||
"cannot allocate %d bytes of CCB memory", len);
|
||||
free(isp->isp_xflist, M_DEVBUF);
|
||||
free(pci->dmaps, M_DEVBUF);
|
||||
return (1);
|
||||
|
|
|
|||
|
|
@ -905,7 +905,7 @@ isp_pci_mbxdma(struct ispsoftc *isp)
|
|||
if (bus_dmamem_alloc(pci->cntrol_dmat, (void **)&base,
|
||||
BUS_DMA_NOWAIT, &pci->cntrol_dmap) != 0) {
|
||||
isp_prt(isp, ISP_LOGERR,
|
||||
"cannot allocate %d bytes of CCB memory");
|
||||
"cannot allocate %d bytes of CCB memory", len);
|
||||
free(isp->isp_xflist, M_DEVBUF);
|
||||
free(pci->dmaps, M_DEVBUF);
|
||||
return (1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue