From 2629c98ef19a2d6c14fbb074cd43f50ca4b731fa Mon Sep 17 00:00:00 2001 From: peter Date: Fri, 7 May 1999 16:33:08 +0000 Subject: [PATCH] Minor style nit (this minor style.9 violation caused a grep miss here) --- sys/pci/pci_compat.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys/pci/pci_compat.c b/sys/pci/pci_compat.c index a7e9d83b1139..a34a19ca61d0 100644 --- a/sys/pci/pci_compat.c +++ b/sys/pci/pci_compat.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pci_compat.c,v 1.23 1999/04/17 08:36:07 peter Exp $ + * $Id: pci_compat.c,v 1.24 1999/04/24 19:55:41 peter Exp $ * */ @@ -74,7 +74,8 @@ pci_conf_write(pcici_t cfg, u_long reg, u_long data) pci_write_config(cfg->dev, reg, data, 4); } -int pci_map_port(pcici_t cfg, u_long reg, pci_port_t* pa) +int +pci_map_port(pcici_t cfg, u_long reg, pci_port_t* pa) { int rid; struct resource *res; @@ -89,7 +90,8 @@ int pci_map_port(pcici_t cfg, u_long reg, pci_port_t* pa) return (0); } -int pci_map_mem(pcici_t cfg, u_long reg, vm_offset_t* va, vm_offset_t* pa) +int +pci_map_mem(pcici_t cfg, u_long reg, vm_offset_t* va, vm_offset_t* pa) { int rid; struct resource *res;