Skip to content

Commit

Permalink
drivers/video/cirrusfb: fix RAM address printk
Browse files Browse the repository at this point in the history
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.

[akpm@linux-foundation.org: join the two printk strings to make it atomic]
Signed-off-by: Philippe De Muyter <phdm@macqel.be>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
phdm authored and torvalds committed Jun 13, 2008
1 parent c97aee9 commit e59b6a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/video/cirrusfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -2432,9 +2432,9 @@ static int cirrusfb_pci_register(struct pci_dev *pdev,
info->screen_size = board_size;
cinfo->unmap = cirrusfb_pci_unmap;

printk(KERN_INFO " RAM (%lu kB) at 0xx%lx, ",
info->screen_size >> 10, board_addr);
printk(KERN_INFO "Cirrus Logic chipset on PCI bus\n");
printk(KERN_INFO "RAM (%lu kB) at 0x%lx, Cirrus "
"Logic chipset on PCI bus\n",
info->screen_size >> 10, board_addr);
pci_set_drvdata(pdev, info);

ret = cirrusfb_register(info);
Expand Down

0 comments on commit e59b6a5

Please sign in to comment.