mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
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>
This commit is contained in:
parent
08a8a4d450
commit
8b38e532b5
2 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue