diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-19 18:19:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-19 18:19:36 +0000 |
commit | 163a03ff2bebf7f64259dc6f20aade64f4d63d2e (patch) | |
tree | 67e591b779bfe54d4aadaed5410488e2e896f2fa /sys/dev | |
parent | 00d92cc2276a9e804d2f89b45be4ee122cbe7127 (diff) |
sis950 has 0x5b missing, so it looks more like an it8712f-a
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/i2c/i2c_scan.c | 4 |
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) { |