diff mbox

[patch-v2.6.33-rc2+,11/12] arm: omap: mailbox: kill compile warning in mailbox.c

Message ID 1262127092-14878-12-git-send-email-felipe.balbi@nokia.com (mailing list archive)
State Accepted
Commit 7364f452a4bc46d13a52af16a256e3bfe81d2ab1
Delegated to: Tony Lindgren
Headers show

Commit Message

Felipe Balbi Dec. 29, 2009, 10:51 p.m. UTC
None
diff mbox

Patch

diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c
index 281ab63..2c9fd1c 100644
--- a/arch/arm/mach-omap2/mailbox.c
+++ b/arch/arm/mach-omap2/mailbox.c
@@ -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);
 	}