X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=kernel%2Fcontext_tracking.c;h=6cb20d2e7ee0d28b0d6399a8cd1f3e23f9366899;hb=b71635775a36d1636f3de84a4d741febe049ad40;hp=e5f3917aa05b724f3367e4fad474534eb34138c5;hpb=b7e047358449f8eb5cba8197b42280b676b82e54;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git diff --git a/kernel/context_tracking.c b/kernel/context_tracking.c index e5f3917..6cb20d2 100644 --- a/kernel/context_tracking.c +++ b/kernel/context_tracking.c @@ -53,10 +53,10 @@ void context_tracking_user_enter(void) /* * Repeat the user_enter() check here because some archs may be calling * this from asm and if no CPU needs context tracking, they shouldn't - * go further. Repeat the check here until they support the static key - * check. + * go further. Repeat the check here until they support the inline static + * key check. */ - if (!static_key_false(&context_tracking_enabled)) + if (!context_tracking_is_enabled()) return; /* @@ -160,7 +160,7 @@ void context_tracking_user_exit(void) { unsigned long flags; - if (!static_key_false(&context_tracking_enabled)) + if (!context_tracking_is_enabled()) return; if (in_interrupt())