Add missing ','

It will fix a bug that "vmstat -e" shows the incorrect counts in wrong entries.
This commit is contained in:
msaitoh 2012-09-06 03:05:41 +00:00
parent 2e04e0ecda
commit bb20a903f3

View File

@ -1,4 +1,4 @@
/* $NetBSD: kirkwood.c,v 1.6 2012/07/18 10:07:34 kiyohara Exp $ */ /* $NetBSD: kirkwood.c,v 1.7 2012/09/06 03:05:41 msaitoh Exp $ */
/* /*
* Copyright (c) 2010 KIYOHARA Takashi * Copyright (c) 2010 KIYOHARA Takashi
* All rights reserved. * All rights reserved.
@ -26,7 +26,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kirkwood.c,v 1.6 2012/07/18 10:07:34 kiyohara Exp $"); __KERNEL_RCSID(0, "$NetBSD: kirkwood.c,v 1.7 2012/09/06 03:05:41 msaitoh Exp $");
#define _INTR_PRIVATE #define _INTR_PRIVATE
@ -64,15 +64,15 @@ static const char * const sources[64] = {
"GbE1Rx(16)", "GbE1Tx(17)", "GbE1Misc(18)", "USB0Cnt(19)", "GbE1Rx(16)", "GbE1Tx(17)", "GbE1Misc(18)", "USB0Cnt(19)",
"Reserved(20)", "Sata(21)", "SecurityInt(22)", "SPIInt(23)", "Reserved(20)", "Sata(21)", "SecurityInt(22)", "SPIInt(23)",
"AudioINT(24)", "Reserved(25)", "TS0Int(26)", "Reserved(27)", "AudioINT(24)", "Reserved(25)", "TS0Int(26)", "Reserved(27)",
"SDIOInt(28)", "TWSI(29)", "AVBInt(30)", "TDMInt(31)" "SDIOInt(28)", "TWSI(29)", "AVBInt(30)", "TDMInt(31)",
"Reserved(32)", "Uart0Int(33)", "Uart1Int(34)", "GPIOLo7_0(35)" "Reserved(32)", "Uart0Int(33)", "Uart1Int(34)", "GPIOLo7_0(35)",
"GPIOLo8_15(36)", "GPIOLo16_23(37)", "GPIOLo24_31(38)", "GPIOHi7_0(39)" "GPIOLo8_15(36)", "GPIOLo16_23(37)", "GPIOLo24_31(38)", "GPIOHi7_0(39)",
"GPIOHi8_15(40)", "GPIOHi16_23(41)", "XOR0Err(42)", "XOR1Err(43)" "GPIOHi8_15(40)", "GPIOHi16_23(41)", "XOR0Err(42)", "XOR1Err(43)",
"PEX0Err(44)", "Reserved(45)", "GbE0Err(46)", "GbE1Err(47)" "PEX0Err(44)", "Reserved(45)", "GbE0Err(46)", "GbE1Err(47)",
"USBErr(48)", "SecurityErr(49)", "AudioErr(50)", "Reserved(51)" "USBErr(48)", "SecurityErr(49)", "AudioErr(50)", "Reserved(51)",
"Reserved(52)", "RTCInt(53)", "Reserved(54)", "Reserved(55)" "Reserved(52)", "RTCInt(53)", "Reserved(54)", "Reserved(55)",
"Reserved(56)", "Reserved(57)", "Reserved(58)", "Reserved(59)" "Reserved(56)", "Reserved(57)", "Reserved(58)", "Reserved(59)",
"Reserved(60)", "Reserved(61)", "Reserved(62)", "Reserved(63)" "Reserved(60)", "Reserved(61)", "Reserved(62)", "Reserved(63)"
}; };