summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2008-05-01 23:02:05 +0000
committerderaadt <deraadt@openbsd.org>2008-05-01 23:02:05 +0000
commit937e0a404acc7ebacfc43737c770319b841e8986 (patch)
tree3f8561702f5e26b5b9023c64aa384fb3cc154cea
parentIn the main loop, do not call wait() if there is no child process yet; (diff)
downloadwireguard-openbsd-937e0a404acc7ebacfc43737c770319b841e8986.tar.xz
wireguard-openbsd-937e0a404acc7ebacfc43737c770319b841e8986.zip
correct attach messages
-rw-r--r--sys/dev/i2c/adm1030.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/i2c/adm1030.c b/sys/dev/i2c/adm1030.c
index cbabb569097..cf47d472df1 100644
--- a/sys/dev/i2c/adm1030.c
+++ b/sys/dev/i2c/adm1030.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: adm1030.c,v 1.8 2007/06/24 05:34:35 dlg Exp $ */
+/* $OpenBSD: adm1030.c,v 1.9 2008/05/01 23:02:05 deraadt Exp $ */
/*
* Copyright (c) 2005 Theo de Raadt
@@ -82,7 +82,7 @@ admtmp_attach(struct device *parent, struct device *self, void *aux)
cmd = ADM1030_FANC;
if (iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP,
sc->sc_addr, &cmd, sizeof cmd, &data, sizeof data, 0)) {
- printf(", unable to read fan setting\n");
+ printf(": unable to read fan setting\n");
return;
}
@@ -103,7 +103,7 @@ admtmp_attach(struct device *parent, struct device *self, void *aux)
sc->sc_sensor[ADMTMP_FAN].type = SENSOR_FANRPM;
if (sensor_task_register(sc, admtmp_refresh, 5) == NULL) {
- printf(", unable to register update task\n");
+ printf(": unable to register update task\n");
return;
}