Module Name:    src
Committed By:   hannken
Date:           Wed Jul  6 15:24:14 UTC 2022

Modified Files:
        src/sys/dev/usb: uplcom.c

Log Message:
Add missing brace.


To generate a diff of this commit:
cvs rdiff -u -r1.93 -r1.94 src/sys/dev/usb/uplcom.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/uplcom.c
diff -u src/sys/dev/usb/uplcom.c:1.93 src/sys/dev/usb/uplcom.c:1.94
--- src/sys/dev/usb/uplcom.c:1.93	Wed Jul  6 06:25:24 2022
+++ src/sys/dev/usb/uplcom.c	Wed Jul  6 15:24:14 2022
@@ -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 @@ uplcom_attach(device_t parent, device_t 
 	/* 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);

Reply via email to