aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/pci_64.c11
-rw-r--r--arch/powerpc/kernel/prom_parse.c4
2 files changed, 8 insertions, 7 deletions
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c
index f73a16e9867..fc60a773af7 100644
--- a/arch/powerpc/kernel/pci_64.c
+++ b/arch/powerpc/kernel/pci_64.c
@@ -1365,16 +1365,17 @@ struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1365 1365
1366#endif /* CONFIG_PPC_MULTIPLATFORM */ 1366#endif /* CONFIG_PPC_MULTIPLATFORM */
1367 1367
1368unsigned int pci_address_to_pio(phys_addr_t address) 1368unsigned long pci_address_to_pio(phys_addr_t address)
1369{ 1369{
1370 struct pci_controller *hose, *tmp; 1370 struct pci_controller *hose, *tmp;
1371 1371
1372 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { 1372 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1373 if (address >= hose->io_base_phys && 1373 if (address >= hose->io_base_phys &&
1374 address < (hose->io_base_phys + hose->pci_io_size)) 1374 address < (hose->io_base_phys + hose->pci_io_size)) {
1375 return (unsigned int) 1375 unsigned long base =
1376 ((unsigned long)hose->io_base_virt + 1376 (unsigned long)hose->io_base_virt - pci_io_base;
1377 (address - hose->io_base_phys)); 1377 return base + (address - hose->io_base_phys);
1378 }
1378 } 1379 }
1379 return (unsigned int)-1; 1380 return (unsigned int)-1;
1380} 1381}
diff --git a/arch/powerpc/kernel/prom_parse.c b/arch/powerpc/kernel/prom_parse.c
index 5b764277f47..309ae1d5fa7 100644
--- a/arch/powerpc/kernel/prom_parse.c
+++ b/arch/powerpc/kernel/prom_parse.c
@@ -503,9 +503,9 @@ static int __of_address_to_resource(struct device_node *dev, u32 *addrp,
503 return -EINVAL; 503 return -EINVAL;
504 memset(r, 0, sizeof(struct resource)); 504 memset(r, 0, sizeof(struct resource));
505 if (flags & IORESOURCE_IO) { 505 if (flags & IORESOURCE_IO) {
506 unsigned int port; 506 unsigned long port;
507 port = pci_address_to_pio(taddr); 507 port = pci_address_to_pio(taddr);
508 if (port == (unsigned int)-1) 508 if (port == (unsigned long)-1)
509 return -EINVAL; 509 return -EINVAL;
510 r->start = port; 510 r->start = port;
511 r->end = port + size - 1; 511 r->end = port + size - 1;