Browse Source

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>
Claudio Scordino 15 years ago
parent
commit
93f6ced9e4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/video/atmel_lcdfb.c

+ 1 - 1
drivers/video/atmel_lcdfb.c

@@ -959,7 +959,7 @@ static int __init atmel_lcdfb_probe(struct platform_device *pdev)
 	if (sinfo->atmel_lcdfb_power_control)
 	if (sinfo->atmel_lcdfb_power_control)
 		sinfo->atmel_lcdfb_power_control(1);
 		sinfo->atmel_lcdfb_power_control(1);
 
 
-	dev_info(dev, "fb%d: Atmel LCDC at 0x%08lx (mapped at %p), irq %lu\n",
+	dev_info(dev, "fb%d: Atmel LCDC at 0x%08lx (mapped at %p), irq %d\n",
 		       info->node, info->fix.mmio_start, sinfo->mmio, sinfo->irq_base);
 		       info->node, info->fix.mmio_start, sinfo->mmio, sinfo->irq_base);
 
 
 	return 0;
 	return 0;