Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/evbarm/iq80310 iq80310_do_pending -> iq80310_do_sof...



details:   https://anonhg.NetBSD.org/src/rev/785d9c23a70d
branches:  trunk
changeset: 525657:785d9c23a70d
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sun Apr 14 21:30:19 2002 +0000

description:
iq80310_do_pending -> iq80310_do_soft, to accurately describe what's
actually going on there.

diffstat:

 sys/arch/evbarm/iq80310/iq80310_intr.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (45 lines):

diff -r 9b3b5e74e8b0 -r 785d9c23a70d sys/arch/evbarm/iq80310/iq80310_intr.c
--- a/sys/arch/evbarm/iq80310/iq80310_intr.c    Sun Apr 14 20:50:20 2002 +0000
+++ b/sys/arch/evbarm/iq80310/iq80310_intr.c    Sun Apr 14 21:30:19 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: iq80310_intr.c,v 1.10 2002/04/12 04:52:57 briggs Exp $ */
+/*     $NetBSD: iq80310_intr.c,v 1.11 2002/04/14 21:30:19 thorpej Exp $        */
 
 /*
  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -270,7 +270,7 @@
 }
 
 static void
-iq80310_do_pending(void)
+iq80310_so_soft(void)
 {
        static __cpu_simple_lock_t processing = __SIMPLELOCK_UNLOCKED;
        int new, oldirqstate;
@@ -326,7 +326,7 @@
 
        /* If there are software interrupts to process, do it. */
        if ((ipending & ~IRQ_BITS) & ~new)
-               iq80310_do_pending();
+               iq80310_so_soft();
 
        /*
         * If there are pending hardware interrupts (i.e. the
@@ -362,7 +362,7 @@
 
        /* Process unmasked pending soft interrupts. */
        if ((ipending & ~IRQ_BITS) & ~current_spl_level)
-               iq80310_do_pending();
+               iq80310_so_soft();
 }
 
 void
@@ -495,7 +495,7 @@
        /* Check for pendings soft intrs. */
        if ((ipending & ~IRQ_BITS) & ~current_spl_level) {
                oldirqstate = enable_interrupts(I32_bit);
-               iq80310_do_pending();
+               iq80310_so_soft();
                restore_interrupts(oldirqstate);
        }
 



Home | Main Index | Thread Index | Old Index