From d9221dbfb3a9a707d8b57b7f9c8be83601c980fe Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Fri, 20 Jul 2007 21:39:42 +0200 Subject: [PATCH] --- yaml --- r: 62251 b: refs/heads/master c: 50af32a94beef566664022254d677504e51b6139 h: refs/heads/master i: 62249: 4364e0b23bd6722d2fa0f81f0faca87eb350f7de 62247: 979de4ffcd1b2e809604b20226466bcddc0886f8 v: v3 --- [refs] | 2 +- trunk/arch/powerpc/platforms/cell/spufs/run.c | 3 +-- trunk/arch/powerpc/platforms/cell/spufs/spufs.h | 3 +-- trunk/arch/powerpc/platforms/cell/spufs/syscalls.c | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index d6502a006960..cdfbfc63efb2 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: ca53da3abb1d49748931ff2acb66d5a6eeeba2a1 +refs/heads/master: 50af32a94beef566664022254d677504e51b6139 diff --git a/trunk/arch/powerpc/platforms/cell/spufs/run.c b/trunk/arch/powerpc/platforms/cell/spufs/run.c index 8c91b3f93152..c0238ea5b55a 100644 --- a/trunk/arch/powerpc/platforms/cell/spufs/run.c +++ b/trunk/arch/powerpc/platforms/cell/spufs/run.c @@ -295,8 +295,7 @@ static inline int spu_process_events(struct spu_context *ctx) return ret; } -long spufs_run_spu(struct file *file, struct spu_context *ctx, - u32 *npc, u32 *event) +long spufs_run_spu(struct spu_context *ctx, u32 *npc, u32 *event) { int ret; u32 status; diff --git a/trunk/arch/powerpc/platforms/cell/spufs/spufs.h b/trunk/arch/powerpc/platforms/cell/spufs/spufs.h index 1438aa2c346e..03e8315f6f9e 100644 --- a/trunk/arch/powerpc/platforms/cell/spufs/spufs.h +++ b/trunk/arch/powerpc/platforms/cell/spufs/spufs.h @@ -181,8 +181,7 @@ extern struct tree_descr spufs_dir_contents[]; extern struct tree_descr spufs_dir_nosched_contents[]; /* system call implementation */ -long spufs_run_spu(struct file *file, - struct spu_context *ctx, u32 *npc, u32 *status); +long spufs_run_spu(struct spu_context *ctx, u32 *npc, u32 *status); long spufs_create(struct nameidata *nd, unsigned int flags, mode_t mode); extern const struct file_operations spufs_context_fops; diff --git a/trunk/arch/powerpc/platforms/cell/spufs/syscalls.c b/trunk/arch/powerpc/platforms/cell/spufs/syscalls.c index 8e37bdf4dfda..13a383c67cae 100644 --- a/trunk/arch/powerpc/platforms/cell/spufs/syscalls.c +++ b/trunk/arch/powerpc/platforms/cell/spufs/syscalls.c @@ -47,7 +47,7 @@ static long do_spu_run(struct file *filp, goto out; i = SPUFS_I(filp->f_path.dentry->d_inode); - ret = spufs_run_spu(filp, i->i_ctx, &npc, &status); + ret = spufs_run_spu(i->i_ctx, &npc, &status); if (put_user(npc, unpc)) ret = -EFAULT;