projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d440a0
)
atmel_lcdfb.c: fix printk() type mismatch
author
Claudio Scordino
<
[email protected]
>
Fri, 9 Oct 2009 10:20:21 +0000
(12:20 +0200)
committer
Jiri Kosina
<
[email protected]
>
Mon, 9 Nov 2009 08:40:58 +0000
(09:40 +0100)
This patch fixes a type mismatch when calling dev_info() in the
atmel_lcdfb.c driver.
Signed-off-by: Claudio Scordino <
[email protected]
>
Signed-off-by: Nicolas Ferre <
[email protected]
>
Signed-off-by: Jiri Kosina <
[email protected]
>
drivers/video/atmel_lcdfb.c
patch
|
blob
|
history
diff --git
a/drivers/video/atmel_lcdfb.c
b/drivers/video/atmel_lcdfb.c
index 2830ffd729764fad573e68b1197d712571872ba8..317afab62b3c908785affe8980a5c97d6114fea6 100644
(file)
--- 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)
if (sinfo->atmel_lcdfb_power_control)
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);
return 0;