[PATCH] rtc: fix printk of 64-bit res on 32-bit platform

From: Jeff Garzik
Date: Tue Oct 10 2006 - 19:19:02 EST



With 64-bit resources on 32-bit platforms, the resource address might be
larger than a void*. Fix printk to work regardless of resource size.

Signed-off-by: Jeff Garzik <jeff@xxxxxxxxxx>

---

drivers/rtc/rtc-v3020.c | 4 ++--

diff --git a/drivers/rtc/rtc-v3020.c b/drivers/rtc/rtc-v3020.c
index 09b714f..6c6d13d 100644
--- a/drivers/rtc/rtc-v3020.c
+++ b/drivers/rtc/rtc-v3020.c
@@ -195,9 +195,9 @@ static int rtc_probe(struct platform_dev
* are all disabled */
v3020_set_reg(chip, V3020_STATUS_0, 0x0);

- dev_info(&pdev->dev, "Chip available at physical address 0x%p,"
+ dev_info(&pdev->dev, "Chip available at physical address 0x%llx,"
"data connected to D%d\n",
- (void*)pdev->resource[0].start,
+ (unsigned long long) pdev->resource[0].start,
chip->leftshift);

platform_set_drvdata(pdev, chip);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/