diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2014-03-07 13:51:12 -0700 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-03-19 15:00:16 -0600 |
commit | 664c28480c90fb8541bcdd1d4b349e9436165ec7 (patch) | |
tree | 6e21ff55e150e7b0e61247407ea985b7ce15a551 /include/linux/pci.h | |
parent | aa11fc58dc71c27701b1f9a529a36a38d4337722 (diff) | |
download | linux-664c28480c90fb8541bcdd1d4b349e9436165ec7.tar.gz linux-664c28480c90fb8541bcdd1d4b349e9436165ec7.tar.bz2 linux-664c28480c90fb8541bcdd1d4b349e9436165ec7.zip |
PCI: Change pci_bus_alloc_resource() type_mask to unsigned long
The pci_bus_alloc_resource() "type_mask" parameter is used to compare with
the "flags" member of a struct resource, so it should be the same type,
namely "unsigned long".
No functional change because all current IORESOURCE_* flags fit in 32 bits.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index fb57c892b214..60ebc17fe909 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1066,7 +1066,7 @@ void pci_bus_remove_resources(struct pci_bus *bus); int __must_check pci_bus_alloc_resource(struct pci_bus *bus, struct resource *res, resource_size_t size, resource_size_t align, resource_size_t min, - unsigned int type_mask, + unsigned long type_mask, resource_size_t (*alignf)(void *, const struct resource *, resource_size_t, |