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/i2c/w83l784r.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/i2c/w83l784r.c')
-rw-r--r-- | sys/dev/i2c/w83l784r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/i2c/w83l784r.c b/sys/dev/i2c/w83l784r.c index d161504006e..48bca0c5a16 100644 --- a/sys/dev/i2c/w83l784r.c +++ b/sys/dev/i2c/w83l784r.c @@ -1,4 +1,4 @@ -/* $OpenBSD: w83l784r.c,v 1.1 2006/01/15 12:20:14 kettenis Exp $ */ +/* $OpenBSD: w83l784r.c,v 1.2 2006/01/19 17:08:39 grange Exp $ */ /* * Copyright (c) 2006 Mark Kettenis @@ -216,7 +216,7 @@ wbenv_attach(struct device *parent, struct device *self, void *aux) /* Add sensors */ for (i = 0; i < sc->sc_numsensors; ++i) - SENSOR_ADD(&sc->sc_sensors[i]); + sensor_add(&sc->sc_sensors[i]); } void |