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:
c97aee9
)
drivers/video/cirrusfb: fix RAM address printk
author
Philippe De Muyter
<
[email protected]
>
Thu, 12 Jun 2008 22:21:45 +0000
(15:21 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 13 Jun 2008 01:05:41 +0000
(18:05 -0700)
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.
[
[email protected]
: join the two printk strings to make it atomic]
Signed-off-by: Philippe De Muyter <
[email protected]
>
Cc: Jiri Slaby <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/cirrusfb.c
patch
|
blob
|
history
diff --git
a/drivers/video/cirrusfb.c
b/drivers/video/cirrusfb.c
index 35ac9d956b3dee0c2359da291997189fc2bd6c8a..c14b2435d23ede7e09fbe7ac54d83339bf29a7f0 100644
(file)
--- a/
drivers/video/cirrusfb.c
+++ b/
drivers/video/cirrusfb.c
@@
-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);