Module Name: src
Committed By: ozaki-r
Date: Wed Apr 2 00:46:12 UTC 2014
Modified Files:
src/sys/arch/sgimips/gio: pci_gio.c
Log Message:
Get rid of a wrong comma
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/sgimips/gio/pci_gio.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/sgimips/gio/pci_gio.c
diff -u src/sys/arch/sgimips/gio/pci_gio.c:1.12 src/sys/arch/sgimips/gio/pci_gio.c:1.13
--- src/sys/arch/sgimips/gio/pci_gio.c:1.12 Sat Mar 29 19:28:30 2014
+++ src/sys/arch/sgimips/gio/pci_gio.c Wed Apr 2 00:46:11 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_gio.c,v 1.12 2014/03/29 19:28:30 christos Exp $ */
+/* $NetBSD: pci_gio.c,v 1.13 2014/04/02 00:46:11 ozaki-r Exp $ */
/*
* Copyright (c) 2006 Stephen M. Rumble
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_gio.c,v 1.12 2014/03/29 19:28:30 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_gio.c,v 1.13 2014/04/02 00:46:11 ozaki-r Exp $");
/*
* Glue for PCI devices that are connected to the GIO bus by various little
@@ -302,7 +302,7 @@ giopci_intr_map(const struct pci_attach_
static const char *
giopci_intr_string(pci_chipset_tag_t pc, pci_intr_handle_t ih, char * buf,
- size_t, len)
+ size_t len)
{
snprintf(buf, len, "slot %s", (ih == GIO_SLOT_EXP0) ? "EXP0" :
(ih == GIO_SLOT_EXP1) ? "EXP1" : "GFX");