Explorar el Código

[PATCH] powerpc: Fix compile problem in pci.c for ppc32

pci_address_to_pio is missing a closing curly brace

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Kumar Gala hace 19 años
padre
commit
e5cd040409
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      arch/ppc/kernel/pci.c

+ 1 - 1
arch/ppc/kernel/pci.c

@@ -1823,7 +1823,7 @@ unsigned long pci_address_to_pio(phys_addr_t address)
 			unsigned long base =
 				(unsigned long)hose->io_base_virt - _IO_BASE;
 			return base + (address - hose->io_base_phys);
-
+		}
 	}
 	return (unsigned int)-1;
 }