]> Git Repo - linux.git/commitdiff
nvidiafb: fix boot-time printk string
authorMikael Pettersson <[email protected]>
Tue, 23 Jun 2009 19:37:07 +0000 (12:37 -0700)
committerLinus Torvalds <[email protected]>
Tue, 23 Jun 2009 19:50:05 +0000 (12:50 -0700)
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]>
drivers/video/nvidia/nv_setup.c

index 135ae18bfce84e7bdd0e307d7d470e8370919ca6..eef2bb298d9f08b4c831a4cce8a78ec7ab5ff965 100644 (file)
@@ -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;
This page took 0.060581 seconds and 4 git commands to generate.