summaryrefslogtreecommitdiffstats
path: root/sys/dev/i2c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2006-03-19 18:19:35 +0000
committerderaadt <deraadt@openbsd.org>2006-03-19 18:19:35 +0000
commit25f3e8a5417c53617146af8757df87a3e1be2592 (patch)
treef43e816a4fe75692281bc2919923cf06d635c23b /sys/dev/i2c
parentmore sane calloc(3) usage; from adobriyan@gmail.com, ok millert (diff)
downloadwireguard-openbsd-25f3e8a5417c53617146af8757df87a3e1be2592.tar.xz
wireguard-openbsd-25f3e8a5417c53617146af8757df87a3e1be2592.zip
sis950 has 0x5b missing, so it looks more like an it8712f-a
Diffstat (limited to 'sys/dev/i2c')
-rw-r--r--sys/dev/i2c/i2c_scan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/i2c/i2c_scan.c b/sys/dev/i2c/i2c_scan.c
index e3962731b0e..64520af5029 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.78 2006/03/19 04:02:22 deraadt Exp $ */
+/* $OpenBSD: i2c_scan.c,v 1.79 2006/03/19 18:19:35 deraadt Exp $ */
/*
* Copyright (c) 2005 Theo de Raadt <deraadt@openbsd.org>
@@ -643,7 +643,7 @@ iic_probe(struct device *self, struct i2cbus_attach_args *iba, u_int8_t addr)
if (iicprobe(0x5b) == 0x12)
name = "it8712";
else if (iicprobe(0x5b) == 0x00)
- name = "it8712f-a"; /* we think */
+ name = "it8712f-a"; /* sis950 too */
}
if (name == NULL) {