svn commit: r257392 - head/sys/dev/snc

Sergey Kandaurov pluknet at FreeBSD.org
Wed Oct 30 17:55:32 UTC 2013


Author: pluknet
Date: Wed Oct 30 17:55:31 2013
New Revision: 257392
URL: http://svnweb.freebsd.org/changeset/base/257392

Log:
  Include the now missing headers after untangling if.h and if_var.h.
  This fixes pc98 build.
  
  Reviewed by:	andre

Modified:
  head/sys/dev/snc/if_snc.c
  head/sys/dev/snc/if_snc_pccard.c

Modified: head/sys/dev/snc/if_snc.c
==============================================================================
--- head/sys/dev/snc/if_snc.c	Wed Oct 30 16:56:46 2013	(r257391)
+++ head/sys/dev/snc/if_snc.c	Wed Oct 30 17:55:31 2013	(r257392)
@@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$");
 #include <net/if.h>
 #include <net/if_arp.h>
 #include <net/if_media.h>
+#include <net/if_var.h>
 
 #include <dev/snc/dp83932reg.h>
 #include <dev/snc/dp83932var.h>

Modified: head/sys/dev/snc/if_snc_pccard.c
==============================================================================
--- head/sys/dev/snc/if_snc_pccard.c	Wed Oct 30 16:56:46 2013	(r257391)
+++ head/sys/dev/snc/if_snc_pccard.c	Wed Oct 30 17:55:31 2013	(r257392)
@@ -41,6 +41,8 @@ __FBSDID("$FreeBSD$");
 #include <sys/systm.h>
 #include <sys/socket.h>
 #include <sys/kernel.h>
+#include <sys/lock.h>
+#include <sys/mutex.h>
 
 #include <sys/module.h>
 #include <sys/bus.h>


More information about the svn-src-head mailing list