* [PATCH -mmotm] gpio: fix cs553x printk format
@ 2009-03-09 23:26 Randy Dunlap
0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2009-03-09 23:26 UTC (permalink / raw)
To: lkml; +Cc: Andres Salomon, akpm
From: Randy Dunlap <randy.dunlap@oracle.com>
Fix printk format warning:
drivers/gpio/cs553x-gpio.c:193: warning: format '%x' expects type 'unsigned int', but argument 5 has type 'resource_size_t'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
drivers/gpio/cs553x-gpio.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- mmotm-2009-0306-1659.orig/drivers/gpio/cs553x-gpio.c
+++ mmotm-2009-0306-1659/drivers/gpio/cs553x-gpio.c
@@ -190,8 +190,8 @@ static int __init cs553x_gpio_probe(stru
cs553x_gpio_chip.pdev = pdev;
spin_lock_init(&cs553x_gpio_chip.lock);
- dev_info(&pdev->dev, "allocated PCI BAR #%d: base 0x%x\n", GPIO_BAR,
- cs553x_gpio_chip.base);
+ dev_info(&pdev->dev, "allocated PCI BAR #%d: base 0x%llx\n", GPIO_BAR,
+ (unsigned long long)cs553x_gpio_chip.base);
/* finally, register with the generic GPIO API */
err = gpiochip_add(&cs553x_gpio_chip.chip);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-09 23:27 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-09 23:26 [PATCH -mmotm] gpio: fix cs553x printk format Randy Dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®