diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-20 23:27:27 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-20 23:27:27 +0000 |
commit | b24a0490358935cd71e101bee2ac6c31b0da59b6 (patch) | |
tree | c2526951f5cceeaaf1fb2cb9df80b919fa16e3a0 /sys/arch/hp300/dev/ct.c | |
parent | bb73845798cff57670d538da76e8d33d95a83c96 (diff) |
b_un.b_addr -> b_data; no functional change.
Diffstat (limited to 'sys/arch/hp300/dev/ct.c')
-rw-r--r-- | sys/arch/hp300/dev/ct.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hp300/dev/ct.c b/sys/arch/hp300/dev/ct.c index d7cef2e372e..f8b42774ea3 100644 --- a/sys/arch/hp300/dev/ct.c +++ b/sys/arch/hp300/dev/ct.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ct.c,v 1.15 2005/12/27 18:34:58 miod Exp $ */ +/* $OpenBSD: ct.c,v 1.16 2006/01/20 23:27:25 miod Exp $ */ /* $NetBSD: ct.c,v 1.21 1997/04/02 22:37:23 scottr Exp $ */ /* @@ -422,7 +422,7 @@ ctcommand(dev, cmd, cnt) bp->b_dev = dev; if (cmd == MTFSF) { nbp = (struct buf *)geteblk(MAXBSIZE); - bp->b_un.b_addr = nbp->b_un.b_addr; + bp->b_data = nbp->b_data; bp->b_bcount = MAXBSIZE; } @@ -478,7 +478,7 @@ ctustart(sc) struct buf *bp; bp = sc->sc_tab.b_actf; - sc->sc_addr = bp->b_un.b_addr; + sc->sc_addr = bp->b_data; sc->sc_resid = bp->b_bcount; if (hpibreq(sc->sc_dev.dv_parent, &sc->sc_hq)) ctstart(sc); |