summaryrefslogtreecommitdiffstats
path: root/include/linux/pci.h
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2012-12-10 11:24:42 -0700
committerBjorn Helgaas <bhelgaas@google.com>2012-12-10 11:24:42 -0700
commitdbd3fc3345390a989a033427aa915a0dfb62149f (patch)
treeec8c03902652acc7d298a0bd51517d853fb86cde /include/linux/pci.h
parentf9a37be0f02a943d63e3346b19f9c9d8d91826cb (diff)
downloadop-kernel-dev-dbd3fc3345390a989a033427aa915a0dfb62149f.zip
op-kernel-dev-dbd3fc3345390a989a033427aa915a0dfb62149f.tar.gz
PCI: Use phys_addr_t for physical ROM address
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>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r--include/linux/pci.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index f116b2d..957563b 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -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 */
};
OpenPOWER on IntegriCloud