diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-11 10:58:22 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-11 10:58:22 +0000 |
commit | 9c004cc2365ad1f8f4d15f93aafe072be63c9933 (patch) | |
tree | 1ee8278f27078e79e93cd7f1025b52a0fa0bd87c /sys/dev/usb/urio.c | |
parent | 63545cda9325b2156532c81096c04f0c47c4566d (diff) |
Remove the definition and use of the USB_GET_SC macro, no binary change.
ok mk.
Diffstat (limited to 'sys/dev/usb/urio.c')
-rw-r--r-- | sys/dev/usb/urio.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/urio.c b/sys/dev/usb/urio.c index 82091f8c597..7cb9fd00d62 100644 --- a/sys/dev/usb/urio.c +++ b/sys/dev/usb/urio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: urio.c,v 1.27 2007/06/10 14:49:01 mbalmer Exp $ */ +/* $OpenBSD: urio.c,v 1.28 2007/06/11 10:58:21 mbalmer Exp $ */ /* $NetBSD: urio.c,v 1.15 2002/10/23 09:14:02 jdolecek Exp $ */ /* @@ -283,7 +283,7 @@ int urioclose(dev_t dev, int flag, int mode, usb_proc_ptr p) { struct urio_softc *sc; - USB_GET_SC(urio, URIOUNIT(dev), sc); + sc = urio_cd.cd_devs[URIOUNIT(dev)]; DPRINTFN(5, ("urioclose: flag=%d, mode=%d, unit=%d\n", flag, mode, URIOUNIT(dev))); @@ -312,7 +312,7 @@ urioread(dev_t dev, struct uio *uio, int flag) u_int32_t n, tn; int error = 0; - USB_GET_SC(urio, URIOUNIT(dev), sc); + sc = urio_cd.cd_devs[URIOUNIT(dev)]; DPRINTFN(5, ("urioread: %d\n", URIOUNIT(dev))); @@ -369,7 +369,7 @@ uriowrite(dev_t dev, struct uio *uio, int flag) u_int32_t n; int error = 0; - USB_GET_SC(urio, URIOUNIT(dev), sc); + sc = urio_cd.cd_devs[URIOUNIT(dev)]; DPRINTFN(5, ("uriowrite: unit=%d, len=%ld\n", URIOUNIT(dev), (long)uio->uio_resid)); @@ -437,7 +437,7 @@ urioioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, usb_proc_ptr p) void *ptr = NULL; int error = 0; - USB_GET_SC(urio, unit, sc); + sc = urio_cd.cd_devs[unit]; if (sc->sc_dying) return (EIO); |