lkml.org 
[lkml]   [2018]   [Apr]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 2/6] ARM: Use update_thread_flag()
Date
This patch uses the new update_thread_flag() helper to simplify an
if () set; else clear; construct.

No functional change.

Signed-off-by: Dave Martin <Dave.Martin@arm.com>
Cc: Russell King <linux@armlinux.org.uk>
---
arch/arm/kernel/elf.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/arch/arm/kernel/elf.c b/arch/arm/kernel/elf.c
index 1824229..aade393 100644
--- a/arch/arm/kernel/elf.c
+++ b/arch/arm/kernel/elf.c
@@ -68,12 +68,9 @@ void elf_set_personality(const struct elf32_hdr *x)
* binary is EABI or softfloat (and thus, guaranteed not to use
* FPA instructions.)
*/
- if (elf_hwcap & HWCAP_IWMMXT &&
- eflags & (EF_ARM_EABI_MASK | EF_ARM_SOFT_FLOAT)) {
- set_thread_flag(TIF_USING_IWMMXT);
- } else {
- clear_thread_flag(TIF_USING_IWMMXT);
- }
+ update_thread_flag(TIF_USING_IWMMXT,
+ elf_hwcap & HWCAP_IWMMXT &&
+ eflags & (EF_ARM_EABI_MASK | EF_ARM_SOFT_FLOAT));
}
EXPORT_SYMBOL(elf_set_personality);

--
2.1.4
\
 
 \ /
  Last update: 2018-04-19 13:00    [W:0.227 / U:0.272 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site