diff options
author | Claudio Scordino <claudio@evidence.eu.com> | 2009-10-09 06:20:21 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-11-09 03:40:58 -0500 |
commit | 93f6ced9e442de2ee817c244048fde3e6350be8d (patch) | |
tree | 7cb5e5e6ceae00e0f0e02598a082fd0f0e9ebf4d /drivers/video/atmel_lcdfb.c | |
parent | 9d440a087b9f1b43acbcad2a45d8605059b82e59 (diff) |
atmel_lcdfb.c: fix printk() type mismatch
This patch fixes a type mismatch when calling dev_info() in the
atmel_lcdfb.c driver.
Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/video/atmel_lcdfb.c')
-rw-r--r-- | drivers/video/atmel_lcdfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/atmel_lcdfb.c b/drivers/video/atmel_lcdfb.c index 2830ffd72976..317afab62b3c 100644 --- a/drivers/video/atmel_lcdfb.c +++ b/drivers/video/atmel_lcdfb.c | |||
@@ -959,7 +959,7 @@ static int __init atmel_lcdfb_probe(struct platform_device *pdev) | |||
959 | if (sinfo->atmel_lcdfb_power_control) | 959 | if (sinfo->atmel_lcdfb_power_control) |
960 | sinfo->atmel_lcdfb_power_control(1); | 960 | sinfo->atmel_lcdfb_power_control(1); |
961 | 961 | ||
962 | dev_info(dev, "fb%d: Atmel LCDC at 0x%08lx (mapped at %p), irq %lu\n", | 962 | dev_info(dev, "fb%d: Atmel LCDC at 0x%08lx (mapped at %p), irq %d\n", |
963 | info->node, info->fix.mmio_start, sinfo->mmio, sinfo->irq_base); | 963 | info->node, info->fix.mmio_start, sinfo->mmio, sinfo->irq_base); |
964 | 964 | ||
965 | return 0; | 965 | return 0; |