diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-powerpc/spu_priv1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-powerpc/spu_priv1.h b/include/asm-powerpc/spu_priv1.h index cb87d1f7e9bc..300c458b6d06 100644 --- a/include/asm-powerpc/spu_priv1.h +++ b/include/asm-powerpc/spu_priv1.h | |||
@@ -33,7 +33,7 @@ struct spu_priv1_ops | |||
33 | u64 (*int_mask_get) (struct spu *spu, int class); | 33 | u64 (*int_mask_get) (struct spu *spu, int class); |
34 | void (*int_stat_clear) (struct spu *spu, int class, u64 stat); | 34 | void (*int_stat_clear) (struct spu *spu, int class, u64 stat); |
35 | u64 (*int_stat_get) (struct spu *spu, int class); | 35 | u64 (*int_stat_get) (struct spu *spu, int class); |
36 | void (*int_route_set) (struct spu *spu, u64 route); | 36 | void (*cpu_affinity_set) (struct spu *spu, int cpu); |
37 | u64 (*mfc_dar_get) (struct spu *spu); | 37 | u64 (*mfc_dar_get) (struct spu *spu); |
38 | u64 (*mfc_dsisr_get) (struct spu *spu); | 38 | u64 (*mfc_dsisr_get) (struct spu *spu); |
39 | void (*mfc_dsisr_set) (struct spu *spu, u64 dsisr); | 39 | void (*mfc_dsisr_set) (struct spu *spu, u64 dsisr); |
@@ -88,9 +88,9 @@ spu_int_stat_get (struct spu *spu, int class) | |||
88 | } | 88 | } |
89 | 89 | ||
90 | static inline void | 90 | static inline void |
91 | spu_int_route_set (struct spu *spu, u64 route) | 91 | spu_cpu_affinity_set (struct spu *spu, int cpu) |
92 | { | 92 | { |
93 | spu_priv1_ops->int_stat_get(spu, route); | 93 | spu_priv1_ops->cpu_affinity_set(spu, cpu); |
94 | } | 94 | } |
95 | 95 | ||
96 | static inline u64 | 96 | static inline u64 |