Use macro definition

Cc: Jeremy Fitzhardinge <jer...@goop.org>
Cc: Chris Wright <chr...@sous-sol.org>
Cc: virtualizat...@lists.linux-foundation.org
Cc: linux-i...@vger.kernel.org
Signed-off-by: Fabian Frederick <f...@skynet.be>
---

This is untested.

 arch/ia64/kernel/paravirt.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/arch/ia64/kernel/paravirt.c b/arch/ia64/kernel/paravirt.c
index 1b22f6d..17bb2d1 100644
--- a/arch/ia64/kernel/paravirt.c
+++ b/arch/ia64/kernel/paravirt.c
@@ -864,8 +864,7 @@ __initdata_or_module =
 unsigned long __init_or_module
 ia64_native_patch_bundle(void *sbundle, void *ebundle, unsigned long type)
 {
-       const unsigned long nelems = sizeof(ia64_native_patch_bundle_elems) /
-               sizeof(ia64_native_patch_bundle_elems[0]);
+       const unsigned long nelems = ARRAY_SIZE(ia64_native_patch_bundle_elems);
 
        return __paravirt_patch_apply_bundle(sbundle, ebundle, type,
                                              ia64_native_patch_bundle_elems,
@@ -894,9 +893,8 @@ __initconst = {
 static void __init
 ia64_native_patch_branch(unsigned long tag, unsigned long type)
 {
-       const unsigned long nelem =
-               sizeof(ia64_native_branch_target) /
-               sizeof(ia64_native_branch_target[0]);
+       const unsigned long nelem = ARRAY_SIZE(ia64_native_branch_target);
+
        __paravirt_patch_apply_branch(tag, type,
                                      ia64_native_branch_target, nelem);
 }
-- 
1.8.4.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to