mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
15b9c02d6c
Removed upstreamed:
generic/101-Use-stddefs.h-instead-of-compiler.h.patch[1]
bcm27xx/patches-5.10/950-0194-drm-fourcc-Add-packed-10bit-YUV-4-2-0-format.patch
All patches automatically rebased.
1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.10.163&id=ddd2bb08bd99b7ee4442fbbe0f9b80236fdd71d2
Build system: x86_64
Build-tested: ramips/tplink_archer-a6-v3
Run-tested: ramips/tplink_archer-a6-v3
Signed-off-by: John Audia <therealgraysky@proton.me>
(cherry picked from commit 2835df54ab
)
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From a79b4327445a827be28b9939592da8e812a19b29 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.org>
|
|
Date: Tue, 23 Feb 2016 17:26:48 +0000
|
|
Subject: [PATCH] amba_pl011: Don't use DT aliases for numbering
|
|
|
|
The pl011 driver looks for DT aliases of the form "serial<n>",
|
|
and if found uses <n> as the device ID. This can cause
|
|
/dev/ttyAMA0 to become /dev/ttyAMA1, which is confusing if the
|
|
other serial port is provided by the 8250 driver which doesn't
|
|
use the same logic.
|
|
---
|
|
drivers/tty/serial/amba-pl011.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
--- a/drivers/tty/serial/amba-pl011.c
|
|
+++ b/drivers/tty/serial/amba-pl011.c
|
|
@@ -2609,7 +2609,12 @@ static int pl011_setup_port(struct devic
|
|
if (IS_ERR(base))
|
|
return PTR_ERR(base);
|
|
|
|
+ /* Don't use DT serial<n> aliases - it causes the device to
|
|
+ be renumbered to ttyAMA1 if it is the second serial port in the
|
|
+ system, even though the other one is ttyS0. The 8250 driver
|
|
+ doesn't use this logic, so always remains ttyS0.
|
|
index = pl011_probe_dt_alias(index, dev);
|
|
+ */
|
|
|
|
uap->old_cr = 0;
|
|
uap->port.dev = dev;
|