Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x86/pci Fix comma with semicolon. No functional cha...



details:   https://anonhg.NetBSD.org/src/rev/cc58f1bdc953
branches:  trunk
changeset: 452049:cc58f1bdc953
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Mon Jun 17 05:45:46 2019 +0000

description:
Fix comma with semicolon. No functional change.

diffstat:

 sys/arch/x86/pci/msipic.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r a9f1ace2e6a4 -r cc58f1bdc953 sys/arch/x86/pci/msipic.c
--- a/sys/arch/x86/pci/msipic.c Mon Jun 17 05:27:01 2019 +0000
+++ b/sys/arch/x86/pci/msipic.c Mon Jun 17 05:45:46 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msipic.c,v 1.13 2019/06/14 05:59:40 msaitoh Exp $      */
+/*     $NetBSD: msipic.c,v 1.14 2019/06/17 05:45:46 msaitoh Exp $      */
 
 /*
  * Copyright (c) 2015 Internet Initiative Japan Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msipic.c,v 1.13 2019/06/14 05:59:40 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msipic.c,v 1.14 2019/06/17 05:45:46 msaitoh Exp $");
 
 #include "opt_intrdebug.h"
 
@@ -250,7 +250,8 @@
        }
 
        memcpy(pic, pic_tmpl, sizeof(*pic));
-       pic->pic_edge_stubs = x2apic_mode ? x2apic_edge_stubs : ioapic_edge_stubs,
+       pic->pic_edge_stubs
+           = x2apic_mode ? x2apic_edge_stubs : ioapic_edge_stubs;
        pic->pic_msipic = msipic;
        msipic->mp_pic = pic;
        pci_decompose_tag(pa->pa_pc, pa->pa_tag,



Home | Main Index | Thread Index | Old Index