aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/sh/drivers/pci/pcie-sh7786.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/sh/drivers/pci/pcie-sh7786.c b/arch/sh/drivers/pci/pcie-sh7786.c
index c1e862af9b63..5acbaa2dc08e 100644
--- a/arch/sh/drivers/pci/pcie-sh7786.c
+++ b/arch/sh/drivers/pci/pcie-sh7786.c
@@ -51,6 +51,7 @@ static struct resource sh7786_pci0_resources[] = {
51 .name = "PCIe0 MEM 2", 51 .name = "PCIe0 MEM 2",
52 .start = 0xfe100000, 52 .start = 0xfe100000,
53 .end = 0xfe100000 + SZ_1M - 1, 53 .end = 0xfe100000 + SZ_1M - 1,
54 .flags = IORESOURCE_MEM,
54 }, 55 },
55}; 56};
56 57
@@ -74,6 +75,7 @@ static struct resource sh7786_pci1_resources[] = {
74 .name = "PCIe1 MEM 2", 75 .name = "PCIe1 MEM 2",
75 .start = 0xfe300000, 76 .start = 0xfe300000,
76 .end = 0xfe300000 + SZ_1M - 1, 77 .end = 0xfe300000 + SZ_1M - 1,
78 .flags = IORESOURCE_MEM,
77 }, 79 },
78}; 80};
79 81
@@ -97,6 +99,7 @@ static struct resource sh7786_pci2_resources[] = {
97 .name = "PCIe2 MEM 2", 99 .name = "PCIe2 MEM 2",
98 .start = 0xfcd00000, 100 .start = 0xfcd00000,
99 .end = 0xfcd00000 + SZ_1M - 1, 101 .end = 0xfcd00000 + SZ_1M - 1,
102 .flags = IORESOURCE_MEM,
100 }, 103 },
101}; 104};
102 105