diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-01-01 17:40:50 +0100 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-02-22 16:16:57 -0800 |
commit | 3b7a17fcdae532d29dffab9d564a28be08960988 (patch) | |
tree | 64ac96e997751e34fcd237485fac9b868d1e0614 /arch/mips/pmc-sierra | |
parent | b26b2d494b659f988b4d75eb394dfa0ddac415c9 (diff) | |
download | linux-3.10-3b7a17fcdae532d29dffab9d564a28be08960988.tar.gz linux-3.10-3b7a17fcdae532d29dffab9d564a28be08960988.tar.bz2 linux-3.10-3b7a17fcdae532d29dffab9d564a28be08960988.zip |
resource/PCI: mark struct resource as const
Now that we return the new resource start position, there is no
need to update "struct resource" inside the align function.
Therefore, mark the struct resource as const.
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Cc: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'arch/mips/pmc-sierra')
-rw-r--r-- | arch/mips/pmc-sierra/yosemite/ht.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pmc-sierra/yosemite/ht.c b/arch/mips/pmc-sierra/yosemite/ht.c index 5e410087b62..fd22597edb6 100644 --- a/arch/mips/pmc-sierra/yosemite/ht.c +++ b/arch/mips/pmc-sierra/yosemite/ht.c @@ -345,7 +345,7 @@ int pcibios_enable_device(struct pci_dev *dev, int mask) return pcibios_enable_resources(dev); } -resource_size_t pcibios_align_resource(void *data, struct resource *res, +resource_size_t pcibios_align_resource(void *data, const struct resource *res, resource_size_t size, resource_size_t align) { struct pci_dev *dev = data; |