add missing length argument

This commit is contained in:
Matt Jacob 2001-01-09 02:12:42 +00:00
parent 2ed19d58c3
commit 3486bfe084
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70820
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);