aboutsummaryrefslogtreecommitdiff
path: root/sys/arm
diff options
context:
space:
mode:
authorOlivier Houchard <cognet@FreeBSD.org>2004-07-02 22:30:42 +0000
committerOlivier Houchard <cognet@FreeBSD.org>2004-07-02 22:30:42 +0000
commit4428e74324d9e5355dcd17db180d5dd65716da43 (patch)
tree1613d22d026c49c979ab320fa79183dddef87cb7 /sys/arm
parent0e564675e46c240aecd30b9130264ad00bb9be92 (diff)
downloadsrc-4428e74324d9e5355dcd17db180d5dd65716da43.tar.gz
src-4428e74324d9e5355dcd17db180d5dd65716da43.zip
ithread_schedule() now only takes one argument.
Notes
Notes: svn path=/head/; revision=131496
Diffstat (limited to 'sys/arm')
-rw-r--r--sys/arm/arm/intr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/arm/intr.c b/sys/arm/arm/intr.c
index 282f43fa1a42..5363f6422997 100644
--- a/sys/arm/arm/intr.c
+++ b/sys/arm/arm/intr.c
@@ -143,7 +143,7 @@ arm_handler_execute(void *irq)
*/
}
} else if (ih) {
- ithread_schedule(ithd, !cold);
+ ithread_schedule(ithd);
}
}
}