]> git.baikalelectronics.ru Git - kernel.git/commitdiff
powerpc/powernv: use resource_size
authorJulia Lawall <Julia.Lawall@inria.fr>
Wed, 1 Jan 2020 17:49:50 +0000 (18:49 +0100)
committerMichael Ellerman <mpe@ellerman.id.au>
Tue, 7 Jan 2020 11:04:40 +0000 (22:04 +1100)
Use resource_size rather than a verbose computation on
the end and start fields.

The semantic patch that makes these changes is as follows:
(http://coccinelle.lip6.fr/)

<smpl>
@@ struct resource ptr; @@
- (ptr.end - ptr.start + 1)
+ resource_size(&ptr)
</smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/1577900990-8588-11-git-send-email-Julia.Lawall@inria.fr
arch/powerpc/platforms/powernv/pci-ioda.c

index 4374836b033b40020d8c1585b93e8b250b972041..62f17c015f9fb72b880000afd818b3c21efa0662 100644 (file)
@@ -792,7 +792,7 @@ static int pnv_ioda_deconfigure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
                fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
                parent = pe->pbus->self;
                if (pe->flags & PNV_IODA_PE_BUS_ALL)
-                       count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
+                       count = resource_size(&pe->pbus->busn_res);
                else
                        count = 1;
 
@@ -874,7 +874,7 @@ static int pnv_ioda_configure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe)
                fcomp = OPAL_IGNORE_RID_FUNCTION_NUMBER;
                parent = pe->pbus->self;
                if (pe->flags & PNV_IODA_PE_BUS_ALL)
-                       count = pe->pbus->busn_res.end - pe->pbus->busn_res.start + 1;
+                       count = resource_size(&pe->pbus->busn_res);
                else
                        count = 1;