powerpc: Improve (in|out)_[bl]eXX() asm code
[pandora-kernel.git] / arch / ppc / syslib / indirect_pci.c
index e714884..83b323a 100644 (file)
@@ -37,12 +37,12 @@ indirect_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
        if (ppc_md.pci_exclude_device)
                if (ppc_md.pci_exclude_device(bus->number, devfn))
                        return PCIBIOS_DEVICE_NOT_FOUND;
-       
+
        if (hose->set_cfg_type)
                if (bus->number != hose->first_busno)
                        cfg_type = 1;
 
-       PCI_CFG_OUT(hose->cfg_addr,                                      
+       PCI_CFG_OUT(hose->cfg_addr,
                 (0x80000000 | ((bus->number - hose->bus_offset) << 16)
                  | (devfn << 8) | ((offset & 0xfc) | cfg_type)));
 
@@ -81,7 +81,7 @@ indirect_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
                if (bus->number != hose->first_busno)
                        cfg_type = 1;
 
-       PCI_CFG_OUT(hose->cfg_addr,                                      
+       PCI_CFG_OUT(hose->cfg_addr,
                 (0x80000000 | ((bus->number - hose->bus_offset) << 16)
                  | (devfn << 8) | ((offset & 0xfc) | cfg_type)));