diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2007-06-24 05:34:36 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2007-06-24 05:34:36 +0000 |
commit | 8919a22510bb2d5e5a6af011d229ac38e966a1a0 (patch) | |
tree | c5ffaca5117bee9e089dc3fc5c042d12f0e24d58 /sys/arch/macppc/dev | |
parent | 741fb47166c6a7ffa0aea3684329acedb201ef7c (diff) |
rework sensor tasks to use the kernels generic workq rather than a special
kernel thread of its own. the api has changed (which will be fixed in the
manpage shortly) so all the users of sensor tasks that i can find have
been fixed too.
noone tested, so its going in to force people to run with it.
"put it in" deraadt@
Diffstat (limited to 'sys/arch/macppc/dev')
-rw-r--r-- | sys/arch/macppc/dev/asms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/asms.c b/sys/arch/macppc/dev/asms.c index 9937a890483..50621c33179 100644 --- a/sys/arch/macppc/dev/asms.c +++ b/sys/arch/macppc/dev/asms.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asms.c,v 1.5 2007/03/22 16:55:31 deraadt Exp $ */ +/* $OpenBSD: asms.c,v 1.6 2007/06/24 05:34:35 dlg Exp $ */ /* * Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org> * @@ -263,7 +263,7 @@ asms_attach(struct device *parent, struct device *self, void *aux) strlcpy(sc->sc_sensor[ASMS_DATA_Z].desc, "Z_ACCEL", sizeof(sc->sc_sensor[ASMS_DATA_Z].desc)); - if (sensor_task_register(sc, asms_refresh, 5)) { + if (sensor_task_register(sc, asms_refresh, 5) == NULL) { printf(": unable to register update task\n"); return; } |