diff options
author | Michael Cree <mcree@orcon.net.nz> | 2012-08-19 06:41:04 +0400 |
---|---|---|
committer | Zefan Li <lizefan@huawei.com> | 2014-09-25 07:49:18 +0400 |
commit | f79bb94b5ae6581d81f7b65cfc8f11e86bc2c8de (patch) | |
tree | 3798a4ad1b94a66f3c89f36f796193e44f5f7e37 | |
parent | 92a6e26fd0c8ba921890dd6adc0166f5ef927f8c (diff) | |
download | linux-f79bb94b5ae6581d81f7b65cfc8f11e86bc2c8de.tar.xz |
alpha: Fix fall-out from disintegrating asm/system.h
commit d1b5153f3ec83789b71d64efaf2a880c8fe6358e upstream.
Commit ec2212088c42 ("Disintegrate asm/system.h for Alpha") removed
asm/system.h however arch/alpha/oprofile/common.c requires definitions
that were shifted from asm/system.h to asm/special_insns.h. Include
that.
Signed-off-by: Michael Cree <mcree@orcon.net.nz>
Acked-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Zefan Li <lizefan@huawei.com>
-rw-r--r-- | arch/alpha/oprofile/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/alpha/oprofile/common.c b/arch/alpha/oprofile/common.c index a0a5d27aa215..b8ce18f485d3 100644 --- a/arch/alpha/oprofile/common.c +++ b/arch/alpha/oprofile/common.c @@ -12,6 +12,7 @@ #include <linux/smp.h> #include <linux/errno.h> #include <asm/ptrace.h> +#include <asm/special_insns.h> #include "op_impl.h" |