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:
e59b6a5
)
driver/char/generic_nvram: fix banner
author
Philippe De Muyter
<
[email protected]
>
Thu, 12 Jun 2008 22:21:46 +0000
(15:21 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 13 Jun 2008 01:05:41 +0000
(18:05 -0700)
The generic nvram driver announces itself as
'Macintosh non-volatile memory driver'
instead of 'Generic non-volatile memory driver'. Fix that.
Signed-off-by: Philippe De Muyter <
[email protected]
>
Cc: Benjamin Herrenschmidt <
[email protected]
>
Cc: Arjan van de Ven <
[email protected]
>
Cc: Paul Mackerras <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/char/generic_nvram.c
patch
|
blob
|
history
diff --git
a/drivers/char/generic_nvram.c
b/drivers/char/generic_nvram.c
index 2398e864c28d98ab3d11dfb64fe39b9485c1a103..a00869c650d5b31a67f0c8d2675435dd6eeb1ebe 100644
(file)
--- a/
drivers/char/generic_nvram.c
+++ b/
drivers/char/generic_nvram.c
@@
-133,7
+133,7
@@
static struct miscdevice nvram_dev = {
int __init nvram_init(void)
{
- printk(KERN_INFO "
Macintosh
non-volatile memory driver v%s\n",
+ printk(KERN_INFO "
Generic
non-volatile memory driver v%s\n",
NVRAM_VERSION);
return misc_register(&nvram_dev);
}