diff options
author | Corey Minyard <cminyard@mvista.com> | 2018-11-30 14:04:19 -0600 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2019-02-27 21:06:08 -0600 |
commit | 8b38e532b58d9e314d95aa9845cc89243ee60acc (patch) | |
tree | f9dc4fb03e03865ea833bd9f594a5b6d3beba6c0 /hw/i2c/smbus_eeprom.c | |
parent | 08a8a4d45050f837d560f1aa23ee0ffff4a2c1d7 (diff) |
i2c:smbus: Make white space in switch statements consistent
It had spaces between cases in some places and not others. Add a space
for every one.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'hw/i2c/smbus_eeprom.c')
-rw-r--r-- | hw/i2c/smbus_eeprom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/i2c/smbus_eeprom.c b/hw/i2c/smbus_eeprom.c index 2f90287b69..2816e35bcc 100644 --- a/hw/i2c/smbus_eeprom.c +++ b/hw/i2c/smbus_eeprom.c @@ -43,6 +43,7 @@ static uint8_t eeprom_receive_byte(SMBusDevice *dev) SMBusEEPROMDevice *eeprom = (SMBusEEPROMDevice *) dev; uint8_t *data = eeprom->data; uint8_t val = data[eeprom->offset++]; + #ifdef DEBUG printf("eeprom_receive_byte: addr=0x%02x val=0x%02x\n", dev->i2c.address, val); |