diff options
author | Joe Perches <joe@perches.com> | 2011-06-09 12:13:32 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-06-10 08:55:36 -0400 |
commit | 28f65c11f2ffb3957259dece647a24f8ad2e241b (patch) | |
tree | 6b7621d09d10df89eedd908d4506fb9f457a909f /arch/microblaze/pci | |
parent | 140a1ef2f91a00e1d25f0878c193abdc25bf6ebe (diff) |
treewide: Convert uses of struct resource to resource_size(ptr)
Several fixes as well where the +1 was missing.
Done via coccinelle scripts like:
@@
struct resource *ptr;
@@
- ptr->end - ptr->start + 1
+ resource_size(ptr)
and some grep and typing.
Mostly uncompiled, no cross-compilers.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'arch/microblaze/pci')
-rw-r--r-- | arch/microblaze/pci/pci-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/pci/pci-common.c b/arch/microblaze/pci/pci-common.c index 53599067d2f9..dd3fae06ece4 100644 --- a/arch/microblaze/pci/pci-common.c +++ b/arch/microblaze/pci/pci-common.c | |||
@@ -89,7 +89,7 @@ void pcibios_free_controller(struct pci_controller *phb) | |||
89 | 89 | ||
90 | static resource_size_t pcibios_io_size(const struct pci_controller *hose) | 90 | static resource_size_t pcibios_io_size(const struct pci_controller *hose) |
91 | { | 91 | { |
92 | return hose->io_resource.end - hose->io_resource.start + 1; | 92 | return resource_size(&hose->io_resource); |
93 | } | 93 | } |
94 | 94 | ||
95 | int pcibios_vaddr_is_ioport(void __iomem *address) | 95 | int pcibios_vaddr_is_ioport(void __iomem *address) |