From c907a8fbbdd2f2e9e7f147bd481648b42fad2e83 Mon Sep 17 00:00:00 2001 From: augustss Date: Wed, 21 Nov 2001 02:47:07 +0000 Subject: [PATCH] Add missing } --- sys/dev/usb/ehci.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index 43841392f4ba..c00a60e4071e 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,7 +1,7 @@ /* TODO Add intrinfo. */ -/* $NetBSD: ehci.c,v 1.15 2001/11/21 02:44:30 augustss Exp $ */ +/* $NetBSD: ehci.c,v 1.16 2001/11/21 02:47:07 augustss Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -50,7 +50,7 @@ Add intrinfo. */ #include -__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.15 2001/11/21 02:44:30 augustss Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.16 2001/11/21 02:47:07 augustss Exp $"); #include #include @@ -860,6 +860,7 @@ ehci_dump_link(ehci_link_t link, int type) case EHCI_LINK_QH: printf("QH"); break; case EHCI_LINK_SITD: printf("SITD"); break; case EHCI_LINK_FSTN: printf("FSTN"); break; + } } printf(">"); }