Skip to content

Commit

Permalink
nvidiafb: fix boot-time printk string
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Mikael Pettersson authored and torvalds committed Jun 23, 2009
1 parent 840c516 commit 4e8a237
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/video/nvidia/nv_setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,7 @@ int NVCommonSetup(struct fb_info *info)
} else if (analog_on_B) {
CRTCnumber = outputBfromCRTC;
FlatPanel = 0;
printk("nvidiafb: CRTC %i"
"appears to have a "
printk("nvidiafb: CRTC %i appears to have a "
"CRT attached\n", CRTCnumber);
} else if (slaved_on_A) {
CRTCnumber = 0;
Expand Down

0 comments on commit 4e8a237

Please sign in to comment.