svn commit: r184209 - head/sys/dev/usb

Ed Schouten ed at FreeBSD.org
Thu Oct 23 19:16:58 UTC 2008


Author: ed
Date: Thu Oct 23 19:16:57 2008
New Revision: 184209
URL: http://svn.freebsd.org/changeset/base/184209

Log:
  Don't include <sys/clist.h> inside ucom(4) and ufoma(4).
  
  After being ported to the MPSAFE TTY layer, these drivers do not use
  clists anymore. Don't include their header files.

Modified:
  head/sys/dev/usb/ucom.c
  head/sys/dev/usb/ufoma.c

Modified: head/sys/dev/usb/ucom.c
==============================================================================
--- head/sys/dev/usb/ucom.c	Thu Oct 23 19:11:44 2008	(r184208)
+++ head/sys/dev/usb/ucom.c	Thu Oct 23 19:16:57 2008	(r184209)
@@ -78,7 +78,6 @@ __FBSDID("$FreeBSD$");
 #include <sys/conf.h>
 #include <sys/serial.h>
 #include <sys/tty.h>
-#include <sys/clist.h>
 #include <sys/file.h>
 #include <sys/selinfo.h>
 #include <sys/proc.h>

Modified: head/sys/dev/usb/ufoma.c
==============================================================================
--- head/sys/dev/usb/ufoma.c	Thu Oct 23 19:11:44 2008	(r184208)
+++ head/sys/dev/usb/ufoma.c	Thu Oct 23 19:16:57 2008	(r184209)
@@ -88,7 +88,6 @@ __FBSDID("$FreeBSD$");
 #include <sys/conf.h>
 #include <sys/serial.h>
 #include <sys/tty.h>
-#include <sys/clist.h>
 #include <sys/file.h>
 #include <sys/select.h>
 #include <sys/sysctl.h>


More information about the svn-src-head mailing list