]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
PCI: Use phys_addr_t for physical ROM address
authorBjorn Helgaas <bhelgaas@google.com>
Mon, 10 Dec 2012 18:24:42 +0000 (11:24 -0700)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 10 Dec 2012 18:24:42 +0000 (11:24 -0700)
Use phys_addr_t rather than "void *" for physical memory address.
This removes casts and fixes a "cast from pointer to integer of different
size" warning on ppc44x_defconfig.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
arch/x86/pci/common.c
drivers/pci/rom.c
include/linux/pci.h

index fddb9f66cc47fc35563ee97a2c8fbf13f4127675..d07f3bbca5a18c1d440941dcde849d6eafab098f 100644 (file)
@@ -628,8 +628,8 @@ int pcibios_add_device(struct pci_dev *dev)
                            (PCI_FUNC(dev->devfn) == rom->function) &&
                            (dev->vendor == rom->vendor) &&
                            (dev->device == rom->devid)) {
-                               dev->rom = (void *)(unsigned long)(pa_data +
-                                     offsetof(struct pci_setup_rom, romdata));
+                               dev->rom = pa_data +
+                                     offsetof(struct pci_setup_rom, romdata);
                                dev->romlen = rom->pcilen;
                        }
                }
index 3a3828fbc87987acd2ac7069483542a292e31fe0..ab886b7ee327af413f98976382869242fcba679b 100644 (file)
@@ -122,7 +122,7 @@ void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size)
         */
        if (pdev->rom && pdev->romlen) {
                *size = pdev->romlen;
-               return phys_to_virt((phys_addr_t)pdev->rom);
+               return phys_to_virt(pdev->rom);
        /*
         * IORESOURCE_ROM_SHADOW set on x86, x86_64 and IA64 supports legacy
         * memory map if the VGA enable bit of the Bridge Control register is
index f116b2d859dce7aa5085eac135ffb3dab5fb164e..957563b7a5e33986339317d8d52ce66c945e7c89 100644 (file)
@@ -333,7 +333,7 @@ struct pci_dev {
        };
        struct pci_ats  *ats;   /* Address Translation Service */
 #endif
-       void *rom; /* Physical pointer to ROM if it's not from the BAR */
+       phys_addr_t rom; /* Physical address of ROM if it's not from the BAR */
        size_t romlen; /* Length of ROM if it's not from the BAR */
 };