diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-27 00:12:58 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-27 00:12:58 +0900 |
commit | 5582b0648de6248c67c0b47fa170e5fb15ab4bf1 (patch) | |
tree | 49b71ae2716673e5e9b7f54212e73632ddd3ec35 /arch/sh/drivers | |
parent | 464c9e10376b24f04402fa8ef72b66257561bffa (diff) | |
download | linux-3.10-5582b0648de6248c67c0b47fa170e5fb15ab4bf1.tar.gz linux-3.10-5582b0648de6248c67c0b47fa170e5fb15ab4bf1.tar.bz2 linux-3.10-5582b0648de6248c67c0b47fa170e5fb15ab4bf1.zip |
sh: pci-sh7780: Fix up for PCI_DISABLE_MWI changes.
This fixes a build error where references to pci_cache_line_size are
undefined, as this ceases to be exported when PCI_DISABLE_MWI is enabled,
as is now the default.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers')
-rw-r--r-- | arch/sh/drivers/pci/pci-sh7780.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/sh/drivers/pci/pci-sh7780.c b/arch/sh/drivers/pci/pci-sh7780.c index ae13ff925c6..323b92d565f 100644 --- a/arch/sh/drivers/pci/pci-sh7780.c +++ b/arch/sh/drivers/pci/pci-sh7780.c @@ -15,8 +15,6 @@ #include <linux/delay.h> #include "pci-sh4.h" -extern u8 pci_cache_line_size; - static struct resource sh7785_io_resource = { .name = "SH7785_IO", .start = SH7780_PCI_IO_BASE, @@ -37,6 +35,7 @@ static struct pci_channel sh7780_pci_controller = { .mem_offset = 0x00000000, .io_resource = &sh7785_io_resource, .io_offset = 0x00000000, + .io_map_base = SH7780_PCI_IO_BASE, }; static struct sh4_pci_address_map sh7780_pci_map = { @@ -99,8 +98,6 @@ static int __init sh7780_pci_init(void) __raw_writeb(PCI_CLASS_BRIDGE_HOST & 0xff, chan->reg_base + SH7780_PCISUB); - pci_cache_line_size = pci_read_reg(chan, SH7780_PCICLS) / 4; - /* * Set IO and Mem windows to local address * Make PCI and local address the same for easy 1 to 1 mapping @@ -142,8 +139,6 @@ static int __init sh7780_pci_init(void) word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_FTO; pci_write_reg(chan, word, SH4_PCICR); - __set_io_port_base(SH7780_PCI_IO_BASE); - register_pci_controller(chan); return 0; |