diff options
author | 1998-01-21 14:17:13 +0000 | |
---|---|---|
committer | 1998-01-21 14:17:13 +0000 | |
commit | 205e31b7cbe77f604c66764b68bdd3130ead1c70 (patch) | |
tree | 6d43cf324b6a2f57e497368581d2a4feb8f848ee | |
parent | Use the sockaddr_dl with the link#, not the ethernet address (diff) | |
download | wireguard-openbsd-205e31b7cbe77f604c66764b68bdd3130ead1c70.tar.xz wireguard-openbsd-205e31b7cbe77f604c66764b68bdd3130ead1c70.zip |
typo
-rw-r--r-- | sys/dev/isa/isadma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/isadma.c b/sys/dev/isa/isadma.c index bb09d9f4959..e86b264063d 100644 --- a/sys/dev/isa/isadma.c +++ b/sys/dev/isa/isadma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isadma.c,v 1.17 1998/01/20 18:40:29 niklas Exp $ */ +/* $OpenBSD: isadma.c,v 1.18 1998/01/21 14:17:13 niklas Exp $ */ /* $NetBSD: isadma.c,v 1.32 1997/09/05 01:48:33 thorpej Exp $ */ /*- @@ -129,7 +129,7 @@ isadmaattach(parent, self, aux) sz = (i & 4) ? 1 << 17 : 1 << 16; if ((bus_dmamap_create(sc->sc_dmat, sz, 1, sz, sz, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW, &isadma_dmam[i])) != 0) - panic("isa_dmastart: can not create DMA map"); + panic("isadmaattach: can not create DMA map"); } #endif |