mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 05:33:09 +00:00
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:
parent
bb8f3c061f
commit
fb5206d9c3
@ -874,8 +874,8 @@ struct mdp4_overlay_pipe *mdp4_overlay_pipe_alloc(void)
|
|||||||
if (pipe->pipe_ndx == 0) {
|
if (pipe->pipe_ndx == 0) {
|
||||||
pipe->pipe_ndx = i + 1; /* start from 1 */
|
pipe->pipe_ndx = i + 1; /* start from 1 */
|
||||||
init_completion(&pipe->comp);
|
init_completion(&pipe->comp);
|
||||||
printk(KERN_INFO "mdp4_overlay_pipe_alloc: pipe=%x ndx=%d\n",
|
printk(KERN_INFO "mdp4_overlay_pipe_alloc: pipe=%p ndx=%d\n",
|
||||||
(int)pipe, pipe->pipe_ndx);
|
pipe, pipe->pipe_ndx);
|
||||||
return pipe;
|
return pipe;
|
||||||
}
|
}
|
||||||
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)
|
void mdp4_overlay_pipe_free(struct mdp4_overlay_pipe *pipe)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO "mdp4_overlay_pipe_free: pipe=%x ndx=%d\n",
|
printk(KERN_INFO "mdp4_overlay_pipe_free: pipe=%p ndx=%d\n",
|
||||||
(int)pipe, pipe->pipe_ndx);
|
pipe, pipe->pipe_ndx);
|
||||||
memset(pipe, 0, sizeof(*pipe));
|
memset(pipe, 0, sizeof(*pipe));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user