Source-Changes-HG archive

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

[src/nick-nhusb]: src/sys/dev/usb KNF



details:   https://anonhg.NetBSD.org/src/rev/da53ec664320
branches:  nick-nhusb
changeset: 334112:da53ec664320
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri Feb 20 09:16:49 2015 +0000

description:
KNF

diffstat:

 sys/dev/usb/uhci.c |  17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)

diffs (37 lines):

diff -r 7088d427996a -r da53ec664320 sys/dev/usb/uhci.c
--- a/sys/dev/usb/uhci.c        Sun Feb 01 13:09:15 2015 +0000
+++ b/sys/dev/usb/uhci.c        Fri Feb 20 09:16:49 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uhci.c,v 1.264.4.19 2015/02/01 12:08:15 skrll Exp $    */
+/*     $NetBSD: uhci.c,v 1.264.4.20 2015/02/20 09:16:49 skrll Exp $    */
 
 /*
  * Copyright (c) 1998, 2004, 2011, 2012 The NetBSD Foundation, Inc.
@@ -42,18 +42,21 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.264.4.19 2015/02/01 12:08:15 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.264.4.20 2015/02/20 09:16:49 skrll Exp $");
 
 #include <sys/param.h>
-#include <sys/systm.h>
+
+#include <sys/bus.h>
+#include <sys/cpu.h>
+#include <sys/device.h>
 #include <sys/kernel.h>
 #include <sys/kmem.h>
-#include <sys/device.h>
-#include <sys/select.h>
+#include <sys/mutex.h>
 #include <sys/proc.h>
 #include <sys/queue.h>
-#include <sys/bus.h>
-#include <sys/cpu.h>
+#include <sys/select.h>
+#include <sys/sysctl.h>
+#include <sys/systm.h>
 
 #include <machine/endian.h>
 



Home | Main Index | Thread Index | Old Index