aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/percpu-defs.h
diff options
context:
space:
mode:
authorChristoph Lameter <cl@linux.com>2014-08-17 12:30:56 -0500
committerTejun Heo <tj@kernel.org>2014-08-26 13:45:56 -0400
commit47405a253da4d8ca4b18ad537423083fdd790440 (patch)
tree3fc46c60a89fe2e7531872eedfac8f8d5dfe2642 /include/linux/percpu-defs.h
parentclocksource: Replace __this_cpu_ptr with raw_cpu_ptr (diff)
downloadlinux-dev-47405a253da4d8ca4b18ad537423083fdd790440.tar.xz
linux-dev-47405a253da4d8ca4b18ad537423083fdd790440.zip
percpu: Remove __this_cpu_ptr
The __this_cpu_ptr macro is no longer in use so drop it. Signed-off-by: Christoph Lameter <cl@linux.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/percpu-defs.h')
-rw-r--r--include/linux/percpu-defs.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/percpu-defs.h b/include/linux/percpu-defs.h
index cfd56046ecec..420032d41d27 100644
--- a/include/linux/percpu-defs.h
+++ b/include/linux/percpu-defs.h
@@ -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.