Skip to content

Commit

Permalink
driver/char/generic_nvram: fix banner
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
phdm authored and torvalds committed Jun 13, 2008
1 parent e59b6a5 commit cfc53f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/generic_nvram.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit cfc53f6

Please sign in to comment.