Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/usb Add missing brace.



details:   https://anonhg.NetBSD.org/src/rev/e5a3becca72c
branches:  trunk
changeset: 368357:e5a3becca72c
user:      hannken <hannken%NetBSD.org@localhost>
date:      Wed Jul 06 15:24:14 2022 +0000

description:
Add missing brace.

diffstat:

 sys/dev/usb/uplcom.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 7567aa9bc9ed -r e5a3becca72c sys/dev/usb/uplcom.c
--- a/sys/dev/usb/uplcom.c      Wed Jul 06 14:34:13 2022 +0000
+++ b/sys/dev/usb/uplcom.c      Wed Jul 06 15:24:14 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uplcom.c,v 1.93 2022/07/06 06:25:24 nat Exp $  */
+/*     $NetBSD: uplcom.c,v 1.94 2022/07/06 15:24:14 hannken Exp $      */
 
 /*
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uplcom.c,v 1.93 2022/07/06 06:25:24 nat Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uplcom.c,v 1.94 2022/07/06 15:24:14 hannken Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -335,7 +335,7 @@
        /* print the chip type */
        if (sc->sc_type == UPLCOM_TYPE_HXN) {
                DPRINTF("chiptype HXN", 0, 0, 0, 0);
-       else if (sc->sc_type == UPLCOM_TYPE_HX) {
+       } else if (sc->sc_type == UPLCOM_TYPE_HX) {
                DPRINTF("chiptype HX", 0, 0, 0, 0);
        } else {
                DPRINTF("chiptype 0", 0, 0, 0, 0);



Home | Main Index | Thread Index | Old Index