Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64561
b: refs/heads/master
c: 62ee68e
h: refs/heads/master
i:
  64559: fc23274
v: v3
  • Loading branch information
Arnd Bergmann authored and Paul Mackerras committed Aug 30, 2007
1 parent 6d466d3 commit 34bcd5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: aac2e68481681a362ab6f44fc515034e2a4c7f2c
refs/heads/master: 62ee68e3bcb0d056aae5b36dea0388ca25572cdf
3 changes: 2 additions & 1 deletion trunk/arch/powerpc/platforms/cell/spufs/backing_ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ static int spu_backing_wbox_write(struct spu_context *ctx, u32 data)
BUG_ON(avail != (4 - slot));
ctx->csa.spu_mailbox_data[slot] = data;
ctx->csa.spu_chnlcnt_RW[29] = ++slot;
ctx->csa.prob.mb_stat_R = (((4 - slot) & 0xff) << 8);
ctx->csa.prob.mb_stat_R &= ~(0x00ff00);
ctx->csa.prob.mb_stat_R |= (((4 - slot) & 0xff) << 8);
gen_spu_event(ctx, MFC_SPU_MAILBOX_WRITTEN_EVENT);
ret = 4;
} else {
Expand Down

0 comments on commit 34bcd5d

Please sign in to comment.