diff options
| author | Olof Johansson <olof@lixom.net> | 2012-10-04 20:17:25 -0700 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2012-10-04 20:17:25 -0700 | 
| commit | 54d69df5849ec2e660aa12ac75562618c10fb499 (patch) | |
| tree | adbfb8bcc7cc73b83bf2b784fa331911ba03573a /arch/arm/mach-shark/pci.c | |
| parent | ad932bb6b549722a561fb31ac2fa50dcbcb3e36b (diff) | |
| parent | 46f2007c1efadfa4071c17e75f140c47f09293de (diff) | |
| download | olio-linux-3.10-54d69df5849ec2e660aa12ac75562618c10fb499.tar.xz olio-linux-3.10-54d69df5849ec2e660aa12ac75562618c10fb499.zip  | |
Merge branch 'late/kirkwood' into late/soc
Merge in the late Kirkwood branch with the OMAP late branch for upstream
submission.
Final contents described in shared tag.
Fixup remove/change conflicts in arch/arm/mach-omap2/devices.c and
drivers/spi/spi-omap2-mcspi.c.
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-shark/pci.c')
| -rw-r--r-- | arch/arm/mach-shark/pci.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-shark/pci.c b/arch/arm/mach-shark/pci.c index 9089407d532..b8b4ab323a3 100644 --- a/arch/arm/mach-shark/pci.c +++ b/arch/arm/mach-shark/pci.c @@ -8,12 +8,15 @@  #include <linux/kernel.h>  #include <linux/pci.h>  #include <linux/init.h> +#include <linux/io.h>  #include <video/vga.h>  #include <asm/irq.h>  #include <asm/mach/pci.h>  #include <asm/mach-types.h> +#define IO_START	0x40000000 +  static int __init shark_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)  {  	if (dev->bus->number == 0) @@ -44,6 +47,8 @@ static int __init shark_pci_init(void)  	pcibios_min_mem = 0x50000000;  	vga_base = 0xe8000000; +	pci_ioremap_io(0, IO_START); +  	pci_common_init(&shark_pci);  	return 0;  |