From 7f9df96825100059e3ee1bc78f8b7154441b2751 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 21 Aug 2016 12:06:54 +0200 Subject: src/southbridge: Remove unnecessary whitespace before "\n" and "\t" Change-Id: I42cc5b8736e73728c5deec6349e8d2a814e19e83 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/16281 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth Reviewed-by: Omar Pakker --- src/southbridge/sis/sis966/aza.c | 2 +- src/southbridge/sis/sis966/ide.c | 2 +- src/southbridge/sis/sis966/nic.c | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/southbridge/sis') diff --git a/src/southbridge/sis/sis966/aza.c b/src/southbridge/sis/sis966/aza.c index a7c33194a4..e442ea25ef 100644 --- a/src/southbridge/sis/sis966/aza.c +++ b/src/southbridge/sis/sis966/aza.c @@ -100,7 +100,7 @@ static int codec_detect(u8 *base) do{ dword = read32(base + 0x08)&0x1; - if(idx++>1000) { printk(BIOS_DEBUG, "controller reset fail !!! \n"); break;} + if(idx++>1000) { printk(BIOS_DEBUG, "controller reset fail !!!\n"); break;} } while (dword !=1); dword=send_verb(base,0x000F0000); // get codec VendorId and DeviceId diff --git a/src/southbridge/sis/sis966/ide.c b/src/southbridge/sis/sis966/ide.c index f3fa07943b..dcd11ac5ac 100644 --- a/src/southbridge/sis/sis966/ide.c +++ b/src/southbridge/sis/sis966/ide.c @@ -120,7 +120,7 @@ printk(BIOS_DEBUG, "IDE_INIT:---------->\n"); if (conf->ide1_enable) { /* Enable secondary ide interface */ word |= (1<<0); - printk(BIOS_DEBUG, "IDE1 \t"); + printk(BIOS_DEBUG, "IDE1\t"); } if (conf->ide0_enable) { /* Enable primary ide interface */ diff --git a/src/southbridge/sis/sis966/nic.c b/src/southbridge/sis/sis966/nic.c index cd376ab781..e48454ddd3 100644 --- a/src/southbridge/sis/sis966/nic.c +++ b/src/southbridge/sis/sis966/nic.c @@ -221,7 +221,7 @@ static int phy_detect(u8 *base,u16 *PhyAddr) //BOOL PHY_Detect() if(!bFoundPhy) { - printk(BIOS_DEBUG, "PHY not found !!!! \n"); + printk(BIOS_DEBUG, "PHY not found !!!!\n"); } *PhyAddr=PhyAddress; @@ -283,7 +283,7 @@ static void nic_init(struct device *dev) // if that is valid we will use that - printk(BIOS_DEBUG, "EEPROM contents %lx \n",ReadEEprom( dev, base, 0LL)); + printk(BIOS_DEBUG, "EEPROM contents %lx\n",ReadEEprom( dev, base, 0LL)); for(i=0;i<3;i++) { //status = smbus_read_byte(dev_eeprom, i); ulValue=ReadEEprom( dev, base, i+3L); @@ -294,7 +294,7 @@ static void nic_init(struct device *dev) } }else{ // read MAC address from firmware - printk(BIOS_DEBUG, "EEPROM invalid!!\nReg 0x38h=%.8lx \n",ulValue); + printk(BIOS_DEBUG, "EEPROM invalid!!\nReg 0x38h=%.8lx\n",ulValue); MacAddr[0]=read16((u16 *)0xffffffc0); // mac address store at here MacAddr[1]=read16((u16 *)0xffffffc2); MacAddr[2]=read16((u16 *)0xffffffc4); -- cgit v1.2.3