summaryrefslogtreecommitdiffstats
path: root/sys/dev/i2c/w83l784r.c
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2006-11-14 20:26:01 +0000
committerkettenis <kettenis@openbsd.org>2006-11-14 20:26:01 +0000
commita8cc4ae7257fa5511ee63101c7142456a791773b (patch)
tree3578b5c11d15f3e6e41fc640df13cf14c7a7fb4b /sys/dev/i2c/w83l784r.c
parentfix a comment (wording from mark) (diff)
downloadwireguard-openbsd-a8cc4ae7257fa5511ee63101c7142456a791773b.tar.xz
wireguard-openbsd-a8cc4ae7257fa5511ee63101c7142456a791773b.zip
Fix typos. From Pierre Riteau <pierre.riteau at free dot fr>.
Diffstat (limited to 'sys/dev/i2c/w83l784r.c')
-rw-r--r--sys/dev/i2c/w83l784r.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/i2c/w83l784r.c b/sys/dev/i2c/w83l784r.c
index a0ee0b5f900..39fcc0bd5cf 100644
--- a/sys/dev/i2c/w83l784r.c
+++ b/sys/dev/i2c/w83l784r.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: w83l784r.c,v 1.8 2006/06/19 14:33:10 kettenis Exp $ */
+/* $OpenBSD: w83l784r.c,v 1.9 2006/11/14 20:26:01 kettenis Exp $ */
/*
* Copyright (c) 2006 Mark Kettenis
@@ -186,13 +186,13 @@ wbenv_attach(struct device *parent, struct device *self, void *aux)
wbenv_setup_sensors(sc, w83l784r_sensors);
break;
case WBENV_CHIPID_W83L785R:
- printf(": W83L784R\n");
+ printf(": W83L785R\n");
wbenv_setup_sensors(sc, w83l785r_sensors);
- goto start;;
+ goto start;
case WBENV_CHIPID_W83L785TS_L:
- printf(": W83L784TS-L\n");
+ printf(": W83L785TS-L\n");
wbenv_setup_sensors(sc, w83l785ts_l_sensors);
- goto start;;
+ goto start;
default:
printf(": unknown Winbond chip (ID 0x%x)\n", sc->sc_chip_id);
return;