mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
nvidiafb: fix boot-time printk string
On bootup nvidiafb prints the following on my Apple G5: nvidiafb: CRTC 1appears to have a CRT attached There should be a space between the '1' and the 'appears'. Add it. Signed-off-by: Mikael Pettersson <mikpe@it.uu.se> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
840c516f9c
commit
4e8a2372f9
1 changed files with 1 additions and 2 deletions
|
@ -543,8 +543,7 @@ int NVCommonSetup(struct fb_info *info)
|
||||||
} else if (analog_on_B) {
|
} else if (analog_on_B) {
|
||||||
CRTCnumber = outputBfromCRTC;
|
CRTCnumber = outputBfromCRTC;
|
||||||
FlatPanel = 0;
|
FlatPanel = 0;
|
||||||
printk("nvidiafb: CRTC %i"
|
printk("nvidiafb: CRTC %i appears to have a "
|
||||||
"appears to have a "
|
|
||||||
"CRT attached\n", CRTCnumber);
|
"CRT attached\n", CRTCnumber);
|
||||||
} else if (slaved_on_A) {
|
} else if (slaved_on_A) {
|
||||||
CRTCnumber = 0;
|
CRTCnumber = 0;
|
||||||
|
|
Loading…
Reference in a new issue