drivers/i2c/designware: Fix indentation

Remove extra tab before printk statement.

Change-Id: Id82239f74ac030f25000a08764637f6d1b52b87b
Signed-off-by: Maulik V Vaghela <maulik.v.vaghela@intel.com>
Reviewed-on: https://review.coreboot.org/25295
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Naresh Solanki <naresh.solanki@intel.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Maulik V Vaghela 2018-03-20 16:52:00 +05:30 committed by Martin Roth
parent 05132707ca
commit 794d097072
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ static int _dw_i2c_transfer(unsigned int bus, const struct i2c_msg *segments,
int j;
for (j = 0; j < segments->len; j++)
printk(BIOS_DEBUG, "%02x ", segments->buf[j]);
printk(BIOS_DEBUG, "\n");
printk(BIOS_DEBUG, "\n");
}
segments++;