From 8b38e532b58d9e314d95aa9845cc89243ee60acc Mon Sep 17 00:00:00 2001 From: Corey Minyard Date: Fri, 30 Nov 2018 14:04:19 -0600 Subject: 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 --- hw/i2c/smbus_eeprom.c | 1 + 1 file changed, 1 insertion(+) (limited to 'hw/i2c/smbus_eeprom.c') 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); -- cgit 1.4.1