Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 47405a25 authored by Christoph Lameter's avatar Christoph Lameter Committed by Tejun Heo
Browse files

percpu: Remove __this_cpu_ptr



The __this_cpu_ptr macro is no longer in use so drop it.

Signed-off-by: default avatarChristoph Lameter <cl@linux.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 77422a8f
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -257,9 +257,6 @@ do { \
#define __raw_get_cpu_var(var)	(*raw_cpu_ptr(&(var)))
#define __get_cpu_var(var)	(*this_cpu_ptr(&(var)))

/* keep until we have removed all uses of __this_cpu_ptr */
#define __this_cpu_ptr(ptr)	raw_cpu_ptr(ptr)

/*
 * Must be an lvalue. Since @var must be a simple identifier,
 * we force a syntax error here if it isn't.