dect
/
linux-2.6
Archived
13
0
Fork 0

staging: msm: formatting of pointers in printk()

Use %p instead of %08x in printk().

Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Acked-by: David Brown <davidb@codeaurora.org>
Acked-by: Daniel Walker <dwalker@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Kulikov Vasiliy 2010-07-14 22:05:58 +04:00 committed by Greg Kroah-Hartman
parent bb8f3c061f
commit fb5206d9c3
1 changed files with 4 additions and 4 deletions

View File

@ -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++;
@ -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));
}