diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2001-06-27 00:20:17 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2001-06-27 00:20:17 +0000 |
commit | e124911f2077dbdfebb2ca7148eca54d747a3675 (patch) | |
tree | 8adb09d22511fbe27ea24b80f599e68aa349f9e3 /sys/dev | |
parent | 63487635218aeb646fbc3a64dda9574dc188db38 (diff) |
Remove an unused function call.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/ises.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/pci/ises.c b/sys/dev/pci/ises.c index 9d7e8f71086..a3200bc609c 100644 --- a/sys/dev/pci/ises.c +++ b/sys/dev/pci/ises.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ises.c,v 1.11 2001/06/25 22:30:07 ho Exp $ */ +/* $OpenBSD: ises.c,v 1.12 2001/06/27 00:20:16 ho Exp $ */ /* * Copyright (c) 2000, 2001 Håkan Olsson (ho@crt.se) @@ -84,9 +84,6 @@ void ises_bchu_switch_session __P((struct ises_softc *, void ises_read_dma __P((struct ises_softc *)); -/* XXX for now... */ -void ubsec_mcopy __P((struct mbuf *, struct mbuf *, int, int)); - #define READ_REG(sc,r) \ bus_space_read_4((sc)->sc_memt, (sc)->sc_memh,r) @@ -1358,7 +1355,9 @@ ises_process(struct cryptop *crp) mp = &m->m_next; } q->q_dst.mbuf = top; +#if notyet ubsec_mcopy(q->q_src.mbuf, q->q_dst.mbuf, cpskip, cpoffset); +#endif } else q->q_dst.mbuf = q->q_src.mbuf; |