diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2008-08-19 01:48:57 -0400 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-08-19 10:04:55 -0400 |
commit | cb9808d3d0cb0ed97197decadcf0431140b9e231 (patch) | |
tree | 855b1102fac534e48c29ec1bc026f8f750be5911 /arch | |
parent | 8d5636fbca202f61fdb808fc9e20c0142291d802 (diff) |
powerpc/spufs: Remove invalid semicolon after if statement
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/sched.c b/arch/powerpc/platforms/cell/spufs/sched.c index 4b6b0c3a8c95..1c1b627ee843 100644 --- a/arch/powerpc/platforms/cell/spufs/sched.c +++ b/arch/powerpc/platforms/cell/spufs/sched.c | |||
@@ -1037,7 +1037,7 @@ void spuctx_switch_state(struct spu_context *ctx, | |||
1037 | node = spu->node; | 1037 | node = spu->node; |
1038 | if (old_state == SPU_UTIL_USER) | 1038 | if (old_state == SPU_UTIL_USER) |
1039 | atomic_dec(&cbe_spu_info[node].busy_spus); | 1039 | atomic_dec(&cbe_spu_info[node].busy_spus); |
1040 | if (new_state == SPU_UTIL_USER); | 1040 | if (new_state == SPU_UTIL_USER) |
1041 | atomic_inc(&cbe_spu_info[node].busy_spus); | 1041 | atomic_inc(&cbe_spu_info[node].busy_spus); |
1042 | } | 1042 | } |
1043 | } | 1043 | } |