mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-13 10:02:38 +00:00
add missing length argument
This commit is contained in:
parent
2ed19d58c3
commit
3486bfe084
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70820
@ -905,7 +905,7 @@ isp_pci_mbxdma(struct ispsoftc *isp)
|
|||||||
if (bus_dmamem_alloc(pci->cntrol_dmat, (void **)&base,
|
if (bus_dmamem_alloc(pci->cntrol_dmat, (void **)&base,
|
||||||
BUS_DMA_NOWAIT, &pci->cntrol_dmap) != 0) {
|
BUS_DMA_NOWAIT, &pci->cntrol_dmap) != 0) {
|
||||||
isp_prt(isp, ISP_LOGERR,
|
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(isp->isp_xflist, M_DEVBUF);
|
||||||
free(pci->dmaps, M_DEVBUF);
|
free(pci->dmaps, M_DEVBUF);
|
||||||
return (1);
|
return (1);
|
||||||
|
@ -905,7 +905,7 @@ isp_pci_mbxdma(struct ispsoftc *isp)
|
|||||||
if (bus_dmamem_alloc(pci->cntrol_dmat, (void **)&base,
|
if (bus_dmamem_alloc(pci->cntrol_dmat, (void **)&base,
|
||||||
BUS_DMA_NOWAIT, &pci->cntrol_dmap) != 0) {
|
BUS_DMA_NOWAIT, &pci->cntrol_dmap) != 0) {
|
||||||
isp_prt(isp, ISP_LOGERR,
|
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(isp->isp_xflist, M_DEVBUF);
|
||||||
free(pci->dmaps, M_DEVBUF);
|
free(pci->dmaps, M_DEVBUF);
|
||||||
return (1);
|
return (1);
|
||||||
|
Loading…
Reference in New Issue
Block a user