mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-13 08:06:58 +00:00
ftrace: clean up macro usage
enclose the argument in parenthesis. (especially since we cast it, which is a high prio operation) Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
2d7da80f71
commit
ac8825ec6d
@ -165,7 +165,7 @@ static DEFINE_SPINLOCK(ftrace_hash_lock);
|
|||||||
#define ftrace_hash_unlock(flags) spin_lock_irqsave(&ftrace_hash_lock, flags)
|
#define ftrace_hash_unlock(flags) spin_lock_irqsave(&ftrace_hash_lock, flags)
|
||||||
#else
|
#else
|
||||||
/* This is protected via the ftrace_lock with MCOUNT_RECORD. */
|
/* This is protected via the ftrace_lock with MCOUNT_RECORD. */
|
||||||
#define ftrace_hash_lock(flags) do { (void)flags; } while (0)
|
#define ftrace_hash_lock(flags) do { (void)(flags); } while (0)
|
||||||
#define ftrace_hash_unlock(flags) do { } while(0)
|
#define ftrace_hash_unlock(flags) do { } while(0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user