mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 19:05:39 +00:00
omap2/3/4: mailbox: kill compile warning in mailbox.c
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>
This commit is contained in:
parent
d761585a05
commit
0cd7e1cc76
@ -93,7 +93,7 @@ static int omap2_mbox_startup(struct omap_mbox *mbox)
|
|||||||
|
|
||||||
mbox_ick_handle = clk_get(NULL, "mailboxes_ick");
|
mbox_ick_handle = clk_get(NULL, "mailboxes_ick");
|
||||||
if (IS_ERR(mbox_ick_handle)) {
|
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));
|
PTR_ERR(mbox_ick_handle));
|
||||||
return PTR_ERR(mbox_ick_handle);
|
return PTR_ERR(mbox_ick_handle);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user