Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Oct 2009 14:55:11 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r198135 - head/sys/sys
Message-ID:  <200910151455.n9FEtBbD076697@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Thu Oct 15 14:55:11 2009
New Revision: 198135
URL: http://svn.freebsd.org/changeset/base/198135

Log:
  Style fixes to the function prototypes for bus_alloc_resources() and
  bus_release_resources().

Modified:
  head/sys/sys/bus.h

Modified: head/sys/sys/bus.h
==============================================================================
--- head/sys/sys/bus.h	Thu Oct 15 14:54:35 2009	(r198134)
+++ head/sys/sys/bus.h	Thu Oct 15 14:55:11 2009	(r198135)
@@ -347,8 +347,10 @@ struct resource_spec {
 	int	flags;
 };
 
-int bus_alloc_resources(device_t dev, struct resource_spec *rs, struct resource **res);
-void bus_release_resources(device_t dev, const struct resource_spec *rs, struct resource **res);
+int	bus_alloc_resources(device_t dev, struct resource_spec *rs,
+			    struct resource **res);
+void	bus_release_resources(device_t dev, const struct resource_spec *rs,
+			      struct resource **res);
 
 struct	resource *bus_alloc_resource(device_t dev, int type, int *rid,
 				     u_long start, u_long end, u_long count,



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