Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 62251
b: refs/heads/master
c: 50af32a
h: refs/heads/master
i:
  62249: 4364e0b
  62247: 979de4f
v: v3
  • Loading branch information
Jeremy Kerr authored and Arnd Bergmann committed Jul 20, 2007
1 parent 85e3a1e commit d9221db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 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: ca53da3abb1d49748931ff2acb66d5a6eeeba2a1
refs/heads/master: 50af32a94beef566664022254d677504e51b6139
3 changes: 1 addition & 2 deletions trunk/arch/powerpc/platforms/cell/spufs/run.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 1 addition & 2 deletions trunk/arch/powerpc/platforms/cell/spufs/spufs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/platforms/cell/spufs/syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d9221db

Please sign in to comment.