src: Use tabs for indentation

Change-Id: I6b40aaf5af5d114bbb0cd227dfd50b0ee19eebba
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/28934
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS
2018-10-05 10:36:45 +02:00
committed by Patrick Georgi
parent d9169f826a
commit 88607a4b10
44 changed files with 146 additions and 146 deletions

View File

@@ -28,7 +28,7 @@ static void at24rf08c_init(struct device *dev)
if (!dev->enabled)
return;
/* Ensure that EEPROM/RFID chip is not accessible through RFID.
/* Ensure that EEPROM/RFID chip is not accessible through RFID.
Need to do it only on 5c. */
if (dev->path.type != DEVICE_PATH_I2C || dev->path.i2c.device != 0x5c)
return;

View File

@@ -39,7 +39,7 @@ static int at24rf08c_read_byte(struct device *dev, u8 addr)
int t = -1;
int j;
/* After a register write AT24RF08C (which we issued in init function)
/* After a register write AT24RF08C (which we issued in init function)
sometimes stops responding. Retry several times in case of failure.
*/
for (j = 0; j < 100; j++) {