Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Fix botch in previous



details:   https://anonhg.NetBSD.org/src/rev/32e92f8f5dd2
branches:  trunk
changeset: 790075:32e92f8f5dd2
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Sep 15 19:27:22 2013 +0000

description:
Fix botch in previous

diffstat:

 sys/dev/usb/usscanner.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r 429f0455bff4 -r 32e92f8f5dd2 sys/dev/usb/usscanner.c
--- a/sys/dev/usb/usscanner.c   Sun Sep 15 18:22:57 2013 +0000
+++ b/sys/dev/usb/usscanner.c   Sun Sep 15 19:27:22 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: usscanner.c,v 1.37 2013/09/15 15:49:38 martin Exp $    */
+/*     $NetBSD: usscanner.c,v 1.38 2013/09/15 19:27:22 martin Exp $    */
 
 /*
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -47,7 +47,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usscanner.c,v 1.37 2013/09/15 15:49:38 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usscanner.c,v 1.38 2013/09/15 19:27:22 martin Exp $");
 
 #include "scsibus.h"
 #include <sys/param.h>
@@ -713,7 +713,8 @@
                    device_xname(sc->sc_dev),
                    xs->xs_periph->periph_target, xs->xs_periph->periph_lun,
                    xs, xs->cmd->opcode, xs->datalen,
-                   periph->periph_quirks, xs->xs_control & XS_CTL_POLL));
+                   xs->xs_periph->periph_quirks,
+                   xs->xs_control & XS_CTL_POLL));
 
                if (sc->sc_dying) {
                        xs->error = XS_DRIVER_STUFFUP;



Home | Main Index | Thread Index | Old Index