]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
staging: msm: formatting of pointers in printk()
authorKulikov Vasiliy <segooon@gmail.com>
Wed, 14 Jul 2010 18:05:58 +0000 (22:05 +0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 22 Jul 2010 19:10:39 +0000 (12:10 -0700)
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>
drivers/staging/msm/mdp4_overlay.c

index 304bb829763508f57723516db30c06b94d4bdd35..de284c28faa123ad4fa749e94105d45490c2038e 100644 (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));
 }