diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2006-01-19 17:08:41 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2006-01-19 17:08:41 +0000 |
commit | ae36f2054b5612aa7968cc0b722e6fd9f0446df1 (patch) | |
tree | 36f0c710576bef0a2dd796b1b8893ee1c0480afe /sys/dev/isa/aps.c | |
parent | 5ddc9bd0d1112ccc5b376dcad408e01de66a48b8 (diff) |
Replace SENSOR_ADD() macro with a pair of functions
sensor_add()/sensor_del() so that sensors can be attached
and detached dynamicaly.
ok kettenis@ deraadt@ dlg@
Diffstat (limited to 'sys/dev/isa/aps.c')
-rw-r--r-- | sys/dev/isa/aps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/aps.c b/sys/dev/isa/aps.c index 688609ff826..26e621c0a75 100644 --- a/sys/dev/isa/aps.c +++ b/sys/dev/isa/aps.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aps.c,v 1.5 2005/08/28 03:52:37 djm Exp $ */ +/* $OpenBSD: aps.c,v 1.6 2006/01/19 17:08:40 grange Exp $ */ /* * Copyright (c) 2005 Jonathan Gray <jsg@openbsd.org> * @@ -200,7 +200,7 @@ aps_attach(struct device *parent, struct device *self, void *aux) for (i = 0; i < sc->numsensors; i++) { strlcpy(sc->sensors[i].device, sc->sc_dev.dv_xname, sizeof(sc->sensors[i].device)); - SENSOR_ADD(&sc->sensors[i]); + sensor_add(&sc->sensors[i]); } powerhook_establish(aps_power, (void *)sc); |