diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-25 03:36:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-25 03:36:02 +0000 |
commit | 9b97efbfff76a3ed901670517eeac6e92bbbbe40 (patch) | |
tree | 210bd709a76952dece4ff4716517a254efe006bb /sys/dev/i2c/i2c_scan.c | |
parent | ba6255ef84dfb695e7683ea5e76e03ac6bf4689a (diff) |
expand range where we search for sensors
Diffstat (limited to 'sys/dev/i2c/i2c_scan.c')
-rw-r--r-- | sys/dev/i2c/i2c_scan.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/i2c/i2c_scan.c b/sys/dev/i2c/i2c_scan.c index 2ba9d0ad58b..5d519c1168f 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.109 2007/10/24 20:15:29 cnst Exp $ */ +/* $OpenBSD: i2c_scan.c,v 1.110 2007/10/25 03:36:01 deraadt Exp $ */ /* * Copyright (c) 2005 Theo de Raadt <deraadt@openbsd.org> @@ -46,8 +46,7 @@ struct iicprobelist { * place those at other addresses, so this isn't a big loss. */ struct iicprobelist probe_addrs_sensor[] = { - { 0x18, 0x18 }, - { 0x1a, 0x1a }, + { 0x18, 0x1f }, { 0x20, 0x2f }, { 0x48, 0x4e }, { 0, 0 } |