From 019c4ca96b77d9d0b450cf745a65e1c42f622cc7 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 27 Mar 2002 03:37:14 +0000 Subject: [PATCH] just fooling around ... hangs on the qlilinux box. --- util/scanspd/spd_82801.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/util/scanspd/spd_82801.c b/util/scanspd/spd_82801.c index 6244b59974..0266d1e2b4 100644 --- a/util/scanspd/spd_82801.c +++ b/util/scanspd/spd_82801.c @@ -234,8 +234,10 @@ main() for(slot = 1; slot < 0xff; slot += 2) { unsigned char val; - if (slot == 0x6a) + if (slot == 0x67) { + slot = 0x71; continue; + } smbus_read_byte(slot, 0, &val); printf("slot 0x%x val 0x%x\n", slot, val); }