Hello everybody,
In the cirrusfb driver, the RAM address printk has a superfluous 'x'
that could be interpreted as "don't care", while it is actually a typo.
Fix that.
Signed-off-by: Philippe De Muyter <phdm@xxxxxxxxx>
diff -r 184e1bb486cf drivers/video/cirrusfb.c
--- a/drivers/video/cirrusfb.c Mon Jun 9 19:30:13 2008 -0700
+++ b/drivers/video/cirrusfb.c Tue Jun 10 13:25:22 2008 +0200
@@ -2432,7 +2432,7 @@ static int cirrusfb_pci_register(struct info->screen_size = board_size;
cinfo->unmap = cirrusfb_pci_unmap;
- printk(KERN_INFO " RAM (%lu kB) at 0xx%lx, ",
+ printk(KERN_INFO " RAM (%lu kB) at 0x%lx, ",
info->screen_size >> 10, board_addr);
printk(KERN_INFO "Cirrus Logic chipset on PCI bus\n");--
pci_set_drvdata(pdev, info);