diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/percpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index 3d9ba92b104f..519d6876590f 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h | |||
@@ -164,8 +164,8 @@ static inline void *pcpu_lpage_remapped(void *kaddr) | |||
164 | 164 | ||
165 | #endif /* CONFIG_SMP */ | 165 | #endif /* CONFIG_SMP */ |
166 | 166 | ||
167 | #define alloc_percpu(type) (type *)__alloc_percpu(sizeof(type), \ | 167 | #define alloc_percpu(type) \ |
168 | __alignof__(type)) | 168 | (typeof(type) *)__alloc_percpu(sizeof(type), __alignof__(type)) |
169 | 169 | ||
170 | /* | 170 | /* |
171 | * Optional methods for optimized non-lvalue per-cpu variable access. | 171 | * Optional methods for optimized non-lvalue per-cpu variable access. |