Commit 93f6ced9e442de2ee817c244048fde3e6350be8d

Authored by Claudio Scordino
Committed by Jiri Kosina
1 parent 9d440a087b

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/video/atmel_lcdfb.c
... ... @@ -959,7 +959,7 @@
959 959 if (sinfo->atmel_lcdfb_power_control)
960 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 963 info->node, info->fix.mmio_start, sinfo->mmio, sinfo->irq_base);
964 964  
965 965 return 0;