summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2023-12-21 19:40:48 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2023-12-21 19:40:48 +0000
commit3b1e3eb73101c8b5bb485306177cd482d188ee2e (patch)
treee7d8c379e11563cf9ec3a2e338cbebbfb76c15a6 /sys/dev
parent459ea3d4f9159a76be3fb089b0f135568c41829b (diff)
New TEMPerGold sensor; reported by Mikolaj Kucharski on bugs@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/ugold.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/dev/usb/ugold.c b/sys/dev/usb/ugold.c
index 7f7dfad213c..c761e5a9f1a 100644
--- a/sys/dev/usb/ugold.c
+++ b/sys/dev/usb/ugold.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ugold.c,v 1.26 2023/12/10 19:03:37 miod Exp $ */
+/* $OpenBSD: ugold.c,v 1.27 2023/12/21 19:40:47 miod Exp $ */
/*
* Copyright (c) 2013 Takayoshi SASANO <uaa@openbsd.org>
@@ -498,8 +498,14 @@ ugold_si700x_type(struct ugold_softc *sc)
/* TEMPerGold prefix */
if (sc->sc_model_len >= 11 &&
memcmp(sc->sc_model, "TEMPerGold_", 11) == 0) {
+ /*
+ * All V3.something models ought to work, but better be
+ * safe than sorry, and TEMPerHum models have been known
+ * to use slightly different sensors between models.
+ */
if (memcmp(sc->sc_model + 11, "V3.1 ", 16 - 11) == 0 ||
- memcmp(sc->sc_model + 11, "V3.4 ", 16 - 11) == 0) {
+ memcmp(sc->sc_model + 11, "V3.4 ", 16 - 11) == 0 ||
+ memcmp(sc->sc_model + 11, "V3.5 ", 16 - 11) == 0) {
sc->sc_type = UGOLD_TYPE_GOLD;
sc->sc_num_sensors = 1;
descr = "gold (temperature only)";