summaryrefslogtreecommitdiff
path: root/sys/arch/arm
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2006-06-01 18:46:06 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2006-06-01 18:46:06 +0000
commit37c7e3af83377548f282dbcccf1cd4bb4dad716a (patch)
tree75012e8adb6f3d741e86ccfcbdc71582bd0ea50f /sys/arch/arm
parent037b84a240f6ab84d7fe79649d7e98565599fa54 (diff)
After changing J3 to J4 on the thecus board, serial interrupts work just
fine (on XINT1), so remove the poll console hacks and rewire the com irq to the correct value for thecus.
Diffstat (limited to 'sys/arch/arm')
-rw-r--r--sys/arch/arm/xscale/i80321_timer.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/arm/xscale/i80321_timer.c b/sys/arch/arm/xscale/i80321_timer.c
index d36273f7cab..59e5799e191 100644
--- a/sys/arch/arm/xscale/i80321_timer.c
+++ b/sys/arch/arm/xscale/i80321_timer.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: i80321_timer.c,v 1.2 2006/05/29 17:27:31 drahn Exp $ */
+/* $OpenBSD: i80321_timer.c,v 1.3 2006/06/01 18:46:05 drahn Exp $ */
/* $NetBSD: i80321_timer.c,v 1.13 2005/12/24 20:06:52 perry Exp $ */
/*
@@ -418,7 +418,6 @@ resettodr(void)
*
* Handle the hardclock interrupt.
*/
-int poll_console(void);
int
clockhandler(void *arg)
{
@@ -431,6 +430,5 @@ clockhandler(void *arg)
if (i80321_hardclock_hook != NULL)
(*i80321_hardclock_hook)();
- poll_console();
return (1);
}