Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Feb 2011 04:53:09 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r218505 - head/lib/libdevinfo
Message-ID:  <201102100453.p1A4r9gH009498@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Thu Feb 10 04:53:09 2011
New Revision: 218505
URL: http://svn.freebsd.org/changeset/base/218505

Log:
  sys/rman.h now requires sys/types.h.  Include it to make the API match
  the man page again.
  
  Submitted by:	Raphael Kubo da Costa
  MFC after:	2 weeks

Modified:
  head/lib/libdevinfo/devinfo.h
  head/lib/libdevinfo/devinfo_var.h

Modified: head/lib/libdevinfo/devinfo.h
==============================================================================
--- head/lib/libdevinfo/devinfo.h	Thu Feb 10 02:48:27 2011	(r218504)
+++ head/lib/libdevinfo/devinfo.h	Thu Feb 10 04:53:09 2011	(r218505)
@@ -31,7 +31,7 @@
 #define _DEVINFO_H_INCLUDED
 
 #include <sys/cdefs.h>
-#include <sys/_types.h>
+#include <sys/types.h>
 #include <sys/bus.h>
 
 typedef __uintptr_t	devinfo_handle_t;

Modified: head/lib/libdevinfo/devinfo_var.h
==============================================================================
--- head/lib/libdevinfo/devinfo_var.h	Thu Feb 10 02:48:27 2011	(r218504)
+++ head/lib/libdevinfo/devinfo_var.h	Thu Feb 10 04:53:09 2011	(r218505)
@@ -27,6 +27,7 @@
  *	$FreeBSD$
  */
 
+#include <sys/types.h>
 #include <sys/rman.h>
 #include <sys/bus.h>
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201102100453.p1A4r9gH009498>