drivers/i2c/at24rf08c: Format according to coding style

1.  Move opening bracket to line above
2.  Remove space after `printk` statements

Change-Id: Ia12a4ed6ab2fb2c9848a2688b41fcfa70ab001b0
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38392
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
Paul Menzel 2020-01-14 01:21:06 +01:00 committed by Patrick Georgi
parent 2a6140ea85
commit d778b3bc90
1 changed files with 3 additions and 4 deletions

View File

@ -29,10 +29,9 @@ static void at24rf08c_init(struct device *dev)
if (dev->path.type != DEVICE_PATH_I2C || dev->path.i2c.device != 0x5c)
return;
printk (BIOS_DEBUG, "Locking EEPROM RFID\n");
printk(BIOS_DEBUG, "Locking EEPROM RFID\n");
for (i = 0; i < 8; i++)
{
for (i = 0; i < 8; i++) {
/* After a register write AT24RF08C sometimes stops responding.
Retry several times in case of failure. */
for (j = 0; j < 100; j++)
@ -40,7 +39,7 @@ static void at24rf08c_init(struct device *dev)
break;
}
printk (BIOS_DEBUG, "init EEPROM done\n");
printk(BIOS_DEBUG, "init EEPROM done\n");
}
static struct device_operations at24rf08c_operations = {