diff options
author | Mikael Pettersson <mikpe@it.uu.se> | 2009-06-23 15:37:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-23 15:50:05 -0400 |
commit | 4e8a2372f9255a1464ef488ed925455f53fbdaa1 (patch) | |
tree | 7681646ce6f57955e3f37e12ebb812ace00f8212 | |
parent | 840c516f9c395c64240ad35f858f37ea16270afa (diff) |
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>
-rw-r--r-- | drivers/video/nvidia/nv_setup.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/nvidia/nv_setup.c b/drivers/video/nvidia/nv_setup.c index 135ae18bfce8..eef2bb298d9f 100644 --- a/drivers/video/nvidia/nv_setup.c +++ b/drivers/video/nvidia/nv_setup.c | |||
@@ -543,8 +543,7 @@ int NVCommonSetup(struct fb_info *info) | |||
543 | } else if (analog_on_B) { | 543 | } else if (analog_on_B) { |
544 | CRTCnumber = outputBfromCRTC; | 544 | CRTCnumber = outputBfromCRTC; |
545 | FlatPanel = 0; | 545 | FlatPanel = 0; |
546 | printk("nvidiafb: CRTC %i" | 546 | printk("nvidiafb: CRTC %i appears to have a " |
547 | "appears to have a " | ||
548 | "CRT attached\n", CRTCnumber); | 547 | "CRT attached\n", CRTCnumber); |
549 | } else if (slaved_on_A) { | 548 | } else if (slaved_on_A) { |
550 | CRTCnumber = 0; | 549 | CRTCnumber = 0; |