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