aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/drivers/pci
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2006-10-03 00:14:04 -0400
committerPaul Mundt <lethal@linux-sh.org>2006-10-03 00:14:04 -0400
commit711fa8096863e4b50bb97f9ebc44606dc2182ac3 (patch)
tree6d0a3a76a0945db8f61957d5b7542a18ab7fc0db /arch/sh/drivers/pci
parent059fbd6a5ee9a35ac9f15edb2876a50bd88a008d (diff)
sh: build fixes for defconfigs.
Get all of the defconfigs building again. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers/pci')
-rw-r--r--arch/sh/drivers/pci/ops-sh03.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/drivers/pci/ops-sh03.c b/arch/sh/drivers/pci/ops-sh03.c
index e58d556e5f94..ebb58e605d9d 100644
--- a/arch/sh/drivers/pci/ops-sh03.c
+++ b/arch/sh/drivers/pci/ops-sh03.c
@@ -35,10 +35,10 @@ static struct resource sh7751_mem_resource = {
35 .flags = IORESOURCE_MEM 35 .flags = IORESOURCE_MEM
36}; 36};
37 37
38extern struct pci_ops sh7751_pci_ops; 38extern struct pci_ops sh4_pci_ops;
39 39
40struct pci_channel board_pci_channels[] = { 40struct pci_channel board_pci_channels[] = {
41 { &sh7751_pci_ops, &sh7751_io_resource, &sh7751_mem_resource, 0, 0xff }, 41 { &sh4_pci_ops, &sh7751_io_resource, &sh7751_mem_resource, 0, 0xff },
42 { NULL, NULL, NULL, 0, 0 }, 42 { NULL, NULL, NULL, 0, 0 },
43}; 43};
44 44