Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66c53aaa authored by Peter Hurley's avatar Peter Hurley Committed by Greg Kroah-Hartman
Browse files

earlycon: Revert log warnings



Log warnings meant to help diagnose problems setting up earlycon
are reporting false positives for 'console='. Revert to the
previous behavior which reported nothing.

Cc: Maciej W. Rozycki <macro@linux-mips.org>
Cc: Robert Schwebel <r.schwebel@pengutronix.de>
Signed-off-by: default avatarPeter Hurley <peter@hurleysoftware.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ebe6afa
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -187,13 +187,8 @@ static int __init param_setup_earlycon(char *buf)
		return 0;

	err = setup_earlycon(buf);
	if (err == -ENOENT) {
		pr_warn("no match for %s\n", buf);
		err = 0;
	} else if (err == -EALREADY) {
		pr_warn("already registered\n");
		err = 0;
	}
	if (err == -ENOENT || err == -EALREADY)
		return 0;
	return err;
}
early_param("earlycon", param_setup_earlycon);