smbus: Fixup potential buffer oob on ADM1032

This commit is contained in:
Matt Borgerson 2019-07-04 01:24:49 -07:00
parent 0550699026
commit 8d17b4d772
1 changed files with 2 additions and 5 deletions

View File

@ -55,11 +55,8 @@ static int smbus_adm1032_write_data(SMBusDevice *dev, uint8_t *buf, uint8_t len)
dev->i2c.address, buf[0]);
cx->cmd = buf[0];
buf++;
len--;
DPRINTF("smbus_adm1032_write_data: addr=0x%02x cmd=0x%02x val=0x%02x\n",
dev->i2c.address, cx->cmd, buf[0]);
// buf++;
// len--;
return 0;
}