Source-Changes-HG archive

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

[src/netbsd-7]: src/sys/arch/arm/cortex Pull up following revision(s) (reques...



details:   https://anonhg.NetBSD.org/src/rev/31998307dc7a
branches:  netbsd-7
changeset: 799084:31998307dc7a
user:      snj <snj%NetBSD.org@localhost>
date:      Sun Mar 15 22:46:38 2015 +0000

description:
Pull up following revision(s) (requested by skrll in ticket #591):
        sys/arch/arm/cortex/gic.c: revision 1.15
G/C armgic_last_priority

diffstat:

 sys/arch/arm/cortex/gic.c |  7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diffs (35 lines):

diff -r ce8fd4968eec -r 31998307dc7a sys/arch/arm/cortex/gic.c
--- a/sys/arch/arm/cortex/gic.c Sun Mar 15 22:44:28 2015 +0000
+++ b/sys/arch/arm/cortex/gic.c Sun Mar 15 22:46:38 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: gic.c,v 1.10.2.2 2015/03/07 05:04:49 snj Exp $ */
+/*     $NetBSD: gic.c,v 1.10.2.3 2015/03/15 22:46:38 snj Exp $ */
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -34,7 +34,7 @@
 #define _INTR_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gic.c,v 1.10.2.2 2015/03/07 05:04:49 snj Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gic.c,v 1.10.2.3 2015/03/15 22:46:38 snj Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -181,8 +181,6 @@
        gicd_write(sc, GICD_ICENABLERn(group), irq_mask);
 }
 
-static uint32_t armgic_last_priority;
-
 static void
 armgic_set_priority(struct pic_softc *pic, int ipl)
 {
@@ -190,7 +188,6 @@
 
        const uint32_t priority = armgic_ipl_to_priority(ipl);
        gicc_write(sc, GICC_PMR, priority);
-       armgic_last_priority = priority;
 }
 
 #ifdef __HAVE_PIC_FAST_SOFTINTS



Home | Main Index | Thread Index | Old Index