aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Antipov <dmitry.antipov@linaro.org>2012-11-20 16:46:57 +0400
committerSireesh Tripurari <sireesh.tripurari@linaro.org>2013-12-10 10:59:56 +0000
commitdf5bcc1c9060c60e34fd49ce61d839c7b88de82d (patch)
tree43fe401815b09df585ee70a65d837276b33718ec
parent80682dd16abe3faae7fff4091d9b6588741cc289 (diff)
downloadjuice-df5bcc1c9060c60e34fd49ce61d839c7b88de82d.tar.gz
binder: fix printk() format specifier to match userptr32_t type
Signed-off-by: Dmitry Antipov <dmitry.antipov@linaro.org>
-rw-r--r--drivers/staging/android/binder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/android/binder.c b/drivers/staging/android/binder.c
index 436e6d26ad8..e3db4516bf6 100644
--- a/drivers/staging/android/binder.c
+++ b/drivers/staging/android/binder.c
@@ -2454,7 +2454,7 @@ static void binder_release_work(struct list_head *list)
death = container_of(w, struct binder_ref_death, work);
binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
- "undelivered death notification, %p\n",
+ "undelivered death notification, %d\n",
death->cookie);
kfree(death);
binder_stats_deleted(BINDER_STAT_DEATH);