mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
powerpc: fix two implicit header uses in pseries/plpar_wrappers.h
Removing the implicit presence of module.h from almost everywhere will reveal this implicit usage of paca.h and string.h headers as follows: arch/powerpc/platforms/pseries/plpar_wrappers.h:22: error: implicit declaration of function 'get_lppaca' arch/powerpc/platforms/pseries/plpar_wrappers.h:208: error: implicit declaration of function 'memcpy' Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
This commit is contained in:
parent
e415372acc
commit
614f15b4fc
1 changed files with 3 additions and 0 deletions
|
@ -1,7 +1,10 @@
|
|||
#ifndef _PSERIES_PLPAR_WRAPPERS_H
|
||||
#define _PSERIES_PLPAR_WRAPPERS_H
|
||||
|
||||
#include <linux/string.h>
|
||||
|
||||
#include <asm/hvcall.h>
|
||||
#include <asm/paca.h>
|
||||
#include <asm/page.h>
|
||||
|
||||
/* Get state of physical CPU from query_cpu_stopped */
|
||||
|
|
Loading…
Reference in a new issue