Skip to content

Commit

Permalink
omap2/3/4: mailbox: kill compile warning in mailbox.c
Browse files Browse the repository at this point in the history
Change %d to %ld to avoid the compile warning.

Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Felipe Balbi authored and Tony Lindgren committed Feb 15, 2010
1 parent d761585 commit 0cd7e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-omap2/mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static int omap2_mbox_startup(struct omap_mbox *mbox)

mbox_ick_handle = clk_get(NULL, "mailboxes_ick");
if (IS_ERR(mbox_ick_handle)) {
printk(KERN_ERR "Could not get mailboxes_ick: %d\n",
printk(KERN_ERR "Could not get mailboxes_ick: %ld\n",
PTR_ERR(mbox_ick_handle));
return PTR_ERR(mbox_ick_handle);
}
Expand Down

0 comments on commit 0cd7e1c

Please sign in to comment.