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 Fix typo in last (luckily, search/re...
details: https://anonhg.NetBSD.org/src/rev/b476a63e360d
branches: trunk
changeset: 525658:b476a63e360d
user: thorpej <thorpej%NetBSD.org@localhost>
date: Sun Apr 14 21:32:24 2002 +0000
description:
Fix typo in last (luckily, search/replace makes the same typo everywhere).
diffstat:
sys/arch/evbarm/iq80310/iq80310_intr.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r 785d9c23a70d -r b476a63e360d sys/arch/evbarm/iq80310/iq80310_intr.c
--- a/sys/arch/evbarm/iq80310/iq80310_intr.c Sun Apr 14 21:30:19 2002 +0000
+++ b/sys/arch/evbarm/iq80310/iq80310_intr.c Sun Apr 14 21:32:24 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: iq80310_intr.c,v 1.11 2002/04/14 21:30:19 thorpej Exp $ */
+/* $NetBSD: iq80310_intr.c,v 1.12 2002/04/14 21:32:24 thorpej Exp $ */
/*
* Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -270,7 +270,7 @@
}
static void
-iq80310_so_soft(void)
+iq80310_do_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_so_soft();
+ iq80310_do_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_so_soft();
+ iq80310_do_soft();
}
void
@@ -495,7 +495,7 @@
/* Check for pendings soft intrs. */
if ((ipending & ~IRQ_BITS) & ~current_spl_level) {
oldirqstate = enable_interrupts(I32_bit);
- iq80310_so_soft();
+ iq80310_do_soft();
restore_interrupts(oldirqstate);
}
Home |
Main Index |
Thread Index |
Old Index