diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2016-01-05 11:07:28 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2016-01-05 11:07:28 +0000 |
commit | 598bcc6ea6ec4032d2ace8b1b43d11b4708af072 (patch) | |
tree | 675a2b01617549b539a4dcb1aec7141798e1f324 /arch/arm64/kernel/asm-offsets.c | |
parent | 0bed4b7aa02c06e05121875dc443295d55b9d91d (diff) | |
parent | e679660dbb8347f275fe5d83a5dd59c1fb6c8e63 (diff) | |
download | talos-obmc-linux-598bcc6ea6ec4032d2ace8b1b43d11b4708af072.tar.gz talos-obmc-linux-598bcc6ea6ec4032d2ace8b1b43d11b4708af072.zip |
Merge branches 'misc' and 'misc-rc6' into for-linus
Diffstat (limited to 'arch/arm64/kernel/asm-offsets.c')
-rw-r--r-- | arch/arm64/kernel/asm-offsets.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm64/kernel/asm-offsets.c b/arch/arm64/kernel/asm-offsets.c index 25de8b244961..bb493d44445f 100644 --- a/arch/arm64/kernel/asm-offsets.c +++ b/arch/arm64/kernel/asm-offsets.c @@ -28,6 +28,7 @@ #include <asm/suspend.h> #include <asm/vdso_datapage.h> #include <linux/kbuild.h> +#include <linux/arm-smccc.h> int main(void) { @@ -161,5 +162,7 @@ int main(void) DEFINE(SLEEP_SAVE_SP_PHYS, offsetof(struct sleep_save_sp, save_ptr_stash_phys)); DEFINE(SLEEP_SAVE_SP_VIRT, offsetof(struct sleep_save_sp, save_ptr_stash)); #endif + DEFINE(ARM_SMCCC_RES_X0_OFFS, offsetof(struct arm_smccc_res, a0)); + DEFINE(ARM_SMCCC_RES_X2_OFFS, offsetof(struct arm_smccc_res, a2)); return 0; } |