Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / southbridge / intel / i82801cx / i82801cx_smbus.c
index b69bbc1d9dca45468524a2f45059d48affb072ac..324f82f2863097c2f47157b6d3499842b554f175 100644 (file)
@@ -9,7 +9,7 @@
 void smbus_enable(void)
 {
        /* iobase addr */
-       pcibios_write_config_dword(PM_BUS, PM_DEVFN, SMB_BASE, 
+       pcibios_write_config_dword(PM_BUS, PM_DEVFN, SMB_BASE,
                                                           SMBUS_IO_BASE | PCI_BASE_ADDRESS_SPACE_IO);
        /* smbus enable */
        pcibios_write_config_byte(PM_BUS, PM_DEVFN, HOSTC, HST_EN);
@@ -31,13 +31,13 @@ static void smbus_wait_until_ready(void)
 static void smbus_wait_until_done(void)
 {
        unsigned char byte;
-       
+
        // Loop while HOST_BUSY
        do {
                byte = inb(SMBUS_IO_BASE + SMBHSTSTAT);
        }
        while((byte &1) == 1);
-       
+
        // Wait for SUCCESS or error or BYTE_DONE
        while( (byte & ~1) == 0) {
                byte = inb(SMBUS_IO_BASE + SMBHSTSTAT);