summaryrefslogtreecommitdiff
path: root/sys/dev/i2c/i2c_scan.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2008-04-10 17:14:10 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2008-04-10 17:14:10 +0000
commit62e66553641559c8769549f5841a5b510cf0ca4e (patch)
tree653ef384a46749d1d512822c109ee7124cb34ea8 /sys/dev/i2c/i2c_scan.c
parentb06ab379093d43635a90201aa771b46937dfe786 (diff)
MCP98242 temp sensor docs found..
Diffstat (limited to 'sys/dev/i2c/i2c_scan.c')
-rw-r--r--sys/dev/i2c/i2c_scan.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/i2c/i2c_scan.c b/sys/dev/i2c/i2c_scan.c
index a8bd752dd5e..015131e4996 100644
--- a/sys/dev/i2c/i2c_scan.c
+++ b/sys/dev/i2c/i2c_scan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: i2c_scan.c,v 1.120 2008/04/09 22:04:10 deraadt Exp $ */
+/* $OpenBSD: i2c_scan.c,v 1.121 2008/04/10 17:14:09 deraadt Exp $ */
/*
* Copyright (c) 2005 Theo de Raadt <deraadt@openbsd.org>
@@ -859,6 +859,10 @@ iic_probe_sensor(struct device *self, u_int8_t addr)
iicprobew(0x07) == 0x0000 &&
(iicprobew(0x00) & 0xffe0) == 0x0000) {
name = "mcp9805";
+ } else if ((addr & 0x18) == 0x18 && iicprobew(0x06) == 0x0054 &&
+ iicprobew(0x07) == 0x2000 &&
+ (iicprobew(0x00) & 0xffe0) == 0x0000) {
+ name = "mcp98242";
} else if ((addr & 0x18) == 0x18 && iicprobew(0x06) == 0x11d4 &&
(iicprobew(0x07) & 0xfff0) == 0x0800 &&
iicprobew(0x00) == 0x001d) {