percpu: Remove __this_cpu_ptr
authorChristoph Lameter <cl@linux.com>
Sun, 17 Aug 2014 17:30:56 +0000 (12:30 -0500)
committerTejun Heo <tj@kernel.org>
Tue, 26 Aug 2014 17:45:56 +0000 (13:45 -0400)
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>
include/linux/percpu-defs.h

index cfd56046ecec3b07bf3f266617206a46c0b2c12e..420032d41d27aeb269210ce27baafa5537373dda 100644 (file)
@@ -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.