[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 1/3] smbus: fix writes
From: |
Marc Marí |
Subject: |
[Qemu-devel] [PATCH 1/3] smbus: fix writes |
Date: |
Mon, 9 Jun 2014 10:55:31 +0200 |
From: Paolo Bonzini <address@hidden>
SMBus protocol sends offset and length before the actual data that
is transferred. So we need to skip two bytes rather than one.
Signed-off-by: Paolo Bonzini <address@hidden>
---
hw/i2c/smbus.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/hw/i2c/smbus.c b/hw/i2c/smbus.c
index 6e27ae8..173a533 100644
--- a/hw/i2c/smbus.c
+++ b/hw/i2c/smbus.c
@@ -59,9 +59,12 @@ static void smbus_do_write(SMBusDevice *dev)
} else {
dev->command = dev->data_buf[0];
DPRINTF("Command %d len %d\n", dev->command, dev->data_len - 1);
+ if (dev->data_buf[1] > dev->data_len - 2) {
+ fprintf(stderr, "SMBus data transfer overrun!\n");
+ }
if (sc->write_data) {
- sc->write_data(dev, dev->command, dev->data_buf + 1,
- dev->data_len - 1);
+ sc->write_data(dev, dev->command, dev->data_buf + 2,
+ MIN(dev->data_buf[1], dev->data_len - 2));
}
}
}
--
1.7.10.4