[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1242652291-1868-1-git-send-email-a.beregalov@gmail.com>
Date: Mon, 18 May 2009 17:11:31 +0400
From: Alexander Beregalov <a.beregalov@...il.com>
To: linux-parisc@...r.kernel.org, linux-kernel@...r.kernel.org,
alan@...rguk.ukuu.org.uk
Cc: Alexander Beregalov <a.beregalov@...il.com>
Subject: [PATCH 2/2] serial: 8250_gsc: fix printk format warning
Fix this build warning:
drivers/serial/8250_gsc.c:44: warning: format '%lx' expects type
'long unsigned int', but argument 2 has type 'resource_size_t'
Signed-off-by: Alexander Beregalov <a.beregalov@...il.com>
---
drivers/serial/8250_gsc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/serial/8250_gsc.c b/drivers/serial/8250_gsc.c
index 418b4fe..a7b02a5 100644
--- a/drivers/serial/8250_gsc.c
+++ b/drivers/serial/8250_gsc.c
@@ -41,7 +41,7 @@ static int __init serial_init_chip(struct parisc_device *dev)
printk(KERN_INFO
"Serial: device 0x%lx not configured.\n"
"Enable support for Wax, Lasi, Asp or Dino.\n",
- dev->hpa.start);
+ (unsigned long)dev->hpa.start);
return -ENODEV;
}
--
1.6.2.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists