Module Name:    src
Committed By:   skrll
Date:           Sat Jan 30 09:48:59 UTC 2021

Modified Files:
        src/sys/arch/arm/nxp: imx6_usb.c

Log Message:
Don't print undefined interrupt value


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/nxp/imx6_usb.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/arch/arm/nxp/imx6_usb.c
diff -u src/sys/arch/arm/nxp/imx6_usb.c:1.3 src/sys/arch/arm/nxp/imx6_usb.c:1.4
--- src/sys/arch/arm/nxp/imx6_usb.c:1.3	Wed Jan 27 03:10:20 2021
+++ src/sys/arch/arm/nxp/imx6_usb.c	Sat Jan 30 09:48:59 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: imx6_usb.c,v 1.3 2021/01/27 03:10:20 thorpej Exp $	*/
+/*	$NetBSD: imx6_usb.c,v 1.4 2021/01/30 09:48:59 skrll Exp $	*/
 
 /*-
  * Copyright (c) 2019 Genetec Corporation.  All rights reserved.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: imx6_usb.c,v 1.3 2021/01/27 03:10:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: imx6_usb.c,v 1.4 2021/01/30 09:48:59 skrll Exp $");
 
 #include "opt_fdt.h"
 
@@ -176,7 +176,7 @@ imxusbc_print(void *aux, const char *nam
 
 	iaa = (struct imxusbc_attach_args *)aux;
 
-	aprint_normal(" unit %d intr %d", iaa->aa_unit, iaa->aa_irq);
+	aprint_normal(" unit %d", iaa->aa_unit);
 	return UNCONF;
 }
 

Reply via email to