Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205948
b: refs/heads/master
c: fb5206d
h: refs/heads/master
v: v3
  • Loading branch information
Kulikov Vasiliy authored and Greg Kroah-Hartman committed Jul 22, 2010
1 parent e82a214 commit deae85b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: bb8f3c061f2e7282730059ae524ff19d47d70b17
refs/heads/master: fb5206d9c36d85a913a2ae05cb97b2629f345094
8 changes: 4 additions & 4 deletions trunk/drivers/staging/msm/mdp4_overlay.c
Original file line number Diff line number Diff line change
Expand Up @@ -874,8 +874,8 @@ struct mdp4_overlay_pipe *mdp4_overlay_pipe_alloc(void)
if (pipe->pipe_ndx == 0) {
pipe->pipe_ndx = i + 1; /* start from 1 */
init_completion(&pipe->comp);
printk(KERN_INFO "mdp4_overlay_pipe_alloc: pipe=%x ndx=%d\n",
(int)pipe, pipe->pipe_ndx);
printk(KERN_INFO "mdp4_overlay_pipe_alloc: pipe=%p ndx=%d\n",
pipe, pipe->pipe_ndx);
return pipe;
}
pipe++;
Expand All @@ -887,8 +887,8 @@ struct mdp4_overlay_pipe *mdp4_overlay_pipe_alloc(void)

void mdp4_overlay_pipe_free(struct mdp4_overlay_pipe *pipe)
{
printk(KERN_INFO "mdp4_overlay_pipe_free: pipe=%x ndx=%d\n",
(int)pipe, pipe->pipe_ndx);
printk(KERN_INFO "mdp4_overlay_pipe_free: pipe=%p ndx=%d\n",
pipe, pipe->pipe_ndx);
memset(pipe, 0, sizeof(*pipe));
}

Expand Down

0 comments on commit deae85b

Please sign in to comment.