summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2009-01-26 15:07:50 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2009-01-26 15:07:50 +0000
commitc68874c89c234949c889dfc7c468a0d578403c82 (patch)
treeec55198df00de228b25f02028f4c030f9cfcfd7e
parent4aec45356703e9fbf73bbf09fbb17abb83475bdb (diff)
Unify error message.
ok grange@, oga@, todd@
-rw-r--r--sys/dev/i2c/asc7611.c4
-rw-r--r--sys/dev/i2c/w83793g.c4
-rw-r--r--sys/dev/isa/sch311x.c4
-rw-r--r--sys/dev/onewire/owsbm.c4
-rw-r--r--sys/dev/pci/kate.c4
-rw-r--r--sys/dev/pci/km.c4
6 files changed, 12 insertions, 12 deletions
diff --git a/sys/dev/i2c/asc7611.c b/sys/dev/i2c/asc7611.c
index 2b10beb776e..2ebb2b32792 100644
--- a/sys/dev/i2c/asc7611.c
+++ b/sys/dev/i2c/asc7611.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: asc7611.c,v 1.1 2008/03/23 07:04:48 cnst Exp $ */
+/* $OpenBSD: asc7611.c,v 1.2 2009/01/26 15:07:49 kettenis Exp $ */
/*
* Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru>
@@ -137,7 +137,7 @@ andl_attach(struct device *parent, struct device *self, void *aux)
sensor_attach(&sc->sc_sensordev, &sc->sc_sensors[i]);
if (sensor_task_register(sc, andl_refresh, 5) == NULL) {
- printf(", unable to register the update task\n");
+ printf(", unable to register update task\n");
return;
}
diff --git a/sys/dev/i2c/w83793g.c b/sys/dev/i2c/w83793g.c
index f6f8179b99a..d637f0b3c41 100644
--- a/sys/dev/i2c/w83793g.c
+++ b/sys/dev/i2c/w83793g.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: w83793g.c,v 1.4 2007/10/18 19:21:52 cnst Exp $ */
+/* $OpenBSD: w83793g.c,v 1.5 2009/01/26 15:07:49 kettenis Exp $ */
/*
* Copyright (c) 2007 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru>
@@ -135,7 +135,7 @@ wbng_attach(struct device *parent, struct device *self, void *aux)
sensor_attach(&sc->sc_sensordev, &sc->sc_sensors[i]);
if (sensor_task_register(sc, wbng_refresh, 5) == NULL) {
- printf(", unable to register the update task\n");
+ printf(", unable to register update task\n");
return;
}
diff --git a/sys/dev/isa/sch311x.c b/sys/dev/isa/sch311x.c
index 961015a9cc3..733d0e62a03 100644
--- a/sys/dev/isa/sch311x.c
+++ b/sys/dev/isa/sch311x.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sch311x.c,v 1.3 2009/01/24 22:30:18 cnst Exp $ */
+/* $OpenBSD: sch311x.c,v 1.4 2009/01/26 15:07:49 kettenis Exp $ */
/*
* Copyright (c) 2008 Mark Kettenis <kettenis@openbsd.org>
* Copyright (c) 2009 Michael Knudsen <mk@openbsd.org>
@@ -345,7 +345,7 @@ schsio_hwm_init(struct schsio_softc *sc)
if (sensor_task_register(sc, schsio_hwm_update,
SCHSIO_HWM_INTERVAL) == NULL) {
- printf(": unable to register the update task");
+ printf(": unable to register update task");
return;
}
sensordev_install(&sc->sc_sensordev);
diff --git a/sys/dev/onewire/owsbm.c b/sys/dev/onewire/owsbm.c
index 3fb4faf54b4..ee9cd555e78 100644
--- a/sys/dev/onewire/owsbm.c
+++ b/sys/dev/onewire/owsbm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: owsbm.c,v 1.5 2008/10/25 00:27:09 deraadt Exp $ */
+/* $OpenBSD: owsbm.c,v 1.6 2009/01/26 15:07:49 kettenis Exp $ */
/*
* Copyright (c) 2007 Aaron Linville <aaron@linville.org>
@@ -138,7 +138,7 @@ owsbm_attach(struct device *parent, struct device *self, void *aux)
sc->sc_sensortask = sensor_task_register(sc, owsbm_update, 10);
if (sc->sc_sensortask == NULL) {
- printf(": unable to register owsbm update task\n");
+ printf(": unable to register update task\n");
return;
}
diff --git a/sys/dev/pci/kate.c b/sys/dev/pci/kate.c
index d4a58b9f6b8..c99e842c0f9 100644
--- a/sys/dev/pci/kate.c
+++ b/sys/dev/pci/kate.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kate.c,v 1.4 2008/09/03 12:00:56 jsg Exp $ */
+/* $OpenBSD: kate.c,v 1.5 2009/01/26 15:07:49 kettenis Exp $ */
/*
* Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru>
@@ -183,7 +183,7 @@ kate_attach(struct device *parent, struct device *self, void *aux)
}
if (sensor_task_register(sc, kate_refresh, 5) == NULL) {
- printf(": unable to register the update task\n");
+ printf(": unable to register update task\n");
return;
}
diff --git a/sys/dev/pci/km.c b/sys/dev/pci/km.c
index 998b5f6975a..48589ff4cf6 100644
--- a/sys/dev/pci/km.c
+++ b/sys/dev/pci/km.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: km.c,v 1.3 2008/08/30 01:10:13 brad Exp $ */
+/* $OpenBSD: km.c,v 1.4 2009/01/26 15:07:49 kettenis Exp $ */
/*
* Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru>
@@ -97,7 +97,7 @@ km_attach(struct device *parent, struct device *self, void *aux)
sensor_attach(&sc->sc_sensordev, &sc->sc_sensor);
if (sensor_task_register(sc, km_refresh, 5) == NULL) {
- printf(": unable to register the update task\n");
+ printf(": unable to register update task\n");
return;
}