diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2018-09-24 13:46:08 +0200 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2018-09-24 13:47:06 +0200 |
commit | 43d36606d668edf155da9d879110de2894df825a (patch) | |
tree | 9963dcc8044c927e805294c3aae181c48c48733b /target/linux/bcm53xx/patches-4.14 | |
parent | dee8804de05dfac3f528e902b9fc68ccd43ec9a1 (diff) | |
download | upstream-43d36606d668edf155da9d879110de2894df825a.tar.gz upstream-43d36606d668edf155da9d879110de2894df825a.tar.bz2 upstream-43d36606d668edf155da9d879110de2894df825a.zip |
kernel: pick earlycon regression fixes from the stable-queue.git
This fixes regression introduced in kernel 4.14 and makes bcm53xx revert
obsolete.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'target/linux/bcm53xx/patches-4.14')
-rw-r--r-- | target/linux/bcm53xx/patches-4.14/910-Revert-earlycon-initialise-baud-field-of-earlycon-de.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/target/linux/bcm53xx/patches-4.14/910-Revert-earlycon-initialise-baud-field-of-earlycon-de.patch b/target/linux/bcm53xx/patches-4.14/910-Revert-earlycon-initialise-baud-field-of-earlycon-de.patch deleted file mode 100644 index c00cae2df3..0000000000 --- a/target/linux/bcm53xx/patches-4.14/910-Revert-earlycon-initialise-baud-field-of-earlycon-de.patch +++ /dev/null @@ -1,33 +0,0 @@ -From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl> -Subject: [PATCH] Revert "earlycon: initialise baud field of earlycon device - structure" -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This reverts commit 31cb9a8575ca04f47ea113434d4782b695638b62. - -It broke earlycon on BCM5301X. Using: -1) uartclk 1843200 (BASE_BAUD * 16) -2) early_console_dev.baud 115200 -results in init_port() calculating UART divisor 1. That's a wrong value -(default one is 54) that breaks serial console output. - -Signed-off-by: Rafał Miłecki <rafal@milecki.pl> ---- - ---- a/drivers/tty/serial/earlycon.c -+++ b/drivers/tty/serial/earlycon.c -@@ -285,12 +285,7 @@ int __init of_setup_earlycon(const struc - } - } - -- val = of_get_flat_dt_prop(node, "current-speed", NULL); -- if (val) -- early_console_dev.baud = be32_to_cpu(*val); -- - if (options) { -- early_console_dev.baud = simple_strtoul(options, NULL, 0); - strlcpy(early_console_dev.options, options, - sizeof(early_console_dev.options)); - } |