Jesse Keating 7a32965
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c
Jesse Keating 7a32965
index 1657b96..4c5c2be 100644
Jesse Keating 7a32965
--- a/drivers/video/console/fbcon.c
Jesse Keating 7a32965
+++ b/drivers/video/console/fbcon.c
Jesse Keating 7a32965
@@ -631,13 +631,15 @@ static void fbcon_prepare_logo(struct vc_data *vc, struct fb_info *info,
Jesse Keating 7a32965
 		kfree(save);
Jesse Keating 7a32965
 	}
Jesse Keating 7a32965
 
Jesse Keating 7a32965
-	if (logo_lines > vc->vc_bottom) {
Jesse Keating 7a32965
-		logo_shown = FBCON_LOGO_CANSHOW;
Jesse Keating 7a32965
-		printk(KERN_INFO
Jesse Keating 7a32965
-		       "fbcon_init: disable boot-logo (boot-logo bigger than screen).\n");
Jesse Keating 7a32965
-	} else if (logo_shown != FBCON_LOGO_DONTSHOW) {
Jesse Keating 7a32965
-		logo_shown = FBCON_LOGO_DRAW;
Jesse Keating 7a32965
-		vc->vc_top = logo_lines;
Jesse Keating 7a32965
+	if (logo_shown != FBCON_LOGO_DONTSHOW) {
Jesse Keating 7a32965
+		if (logo_lines > vc->vc_bottom) {
Jesse Keating 7a32965
+			logo_shown = FBCON_LOGO_CANSHOW;
Jesse Keating 7a32965
+			printk(KERN_INFO
Jesse Keating 7a32965
+			       "fbcon_init: disable boot-logo (boot-logo bigger than screen).\n");
Jesse Keating 7a32965
+		} else {
Jesse Keating 7a32965
+			logo_shown = FBCON_LOGO_DRAW;
Jesse Keating 7a32965
+			vc->vc_top = logo_lines;
Jesse Keating 7a32965
+		}
Jesse Keating 7a32965
 	}
Jesse Keating 7a32965
 }
Jesse Keating 7a32965
 #endif /* MODULE */
Jesse Keating 7a32965
@@ -3489,6 +3491,14 @@ static int __init fb_console_init(void)
Jesse Keating 7a32965
 	return 0;
Jesse Keating 7a32965
 }
Jesse Keating 7a32965
 
Jesse Keating 7a32965
+static int __init quiet_logo(char *str)
Jesse Keating 7a32965
+{
Jesse Keating 7a32965
+	logo_shown = FBCON_LOGO_DONTSHOW;
Jesse Keating 7a32965
+	return 0;
Jesse Keating 7a32965
+}
Jesse Keating 7a32965
+
Jesse Keating 7a32965
+early_param("quiet", quiet_logo);
Jesse Keating 7a32965
+
Jesse Keating 7a32965
 module_init(fb_console_init);
Jesse Keating 7a32965
 
Jesse Keating 7a32965
 #ifdef MODULE