diff options
author | Michael Neuling <[email protected]> | 2009-02-08 13:04:14 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <[email protected]> | 2009-02-10 14:39:08 +1100 |
commit | d87bf76679bd37593ae4a3133f5da9395a4963ac (patch) | |
tree | 0283dc19fdd765bcc2239533a7cbb187a9ac93d4 | |
parent | f25f9074c24f1451a74942c4bc089bb53e47f462 (diff) |
powerpc/cell: Add missing #include for oprofile
arch/powerpc/oprofile/cell/spu_profiler.c is missing a asm/time.h
include which is required for ppc_proc_freq. This can cause compile
failures for some config combinations.
Signed-off-by: Michael Neuling <[email protected]>
Acked-by: Arnd Bergmann <[email protected]>
Signed-off-by: Benjamin Herrenschmidt <[email protected]>
-rw-r--r-- | arch/powerpc/oprofile/cell/spu_profiler.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/oprofile/cell/spu_profiler.c b/arch/powerpc/oprofile/cell/spu_profiler.c index 9305ddaac512..b129d007e7fe 100644 --- a/arch/powerpc/oprofile/cell/spu_profiler.c +++ b/arch/powerpc/oprofile/cell/spu_profiler.c @@ -16,6 +16,7 @@ #include <linux/smp.h> #include <linux/slab.h> #include <asm/cell-pmu.h> +#include <asm/time.h> #include "pr_util.h" #define SCALE_SHIFT 14 |