[PATCH -mmotm] gpio: fix cs553x printk format

From: Randy Dunlap
Date: Mon Mar 09 2009 - 19:27:26 EST


From: Randy Dunlap <randy.dunlap@xxxxxxxxxx>

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@xxxxxxxxxx>
---
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);
--
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/