Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5cd0404 authored by Kumar Gala's avatar Kumar Gala Committed by Paul Mackerras
Browse files

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



pci_address_to_pio is missing a closing curly brace

Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent f2c4583a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}