mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-27 06:39:51 +00:00
3a5584e0df
Adds latest 6.6 patches from the Raspberry Pi repository. These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.6.y/ With the following command: git format-patch -N v6.6.67..HEAD (HEAD -> 811ff707533bcd67cdcd368bbd46223082009b12) Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (cherry picked from commit 692205305db14deeff1a2dc4a6d7f87e19fc418b)
24 lines
807 B
Diff
24 lines
807 B
Diff
From 0313a0961b685973f7833017479a277e3a4c05a4 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Wed, 4 Dec 2024 14:40:59 +0000
|
|
Subject: [PATCH] fixup! serial: tty: Add a driver for the RPi firmware UART
|
|
|
|
Make SERIAL_RPI_FW depend on RASPBERRYPI_FIRMWARE.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/tty/serial/Kconfig | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/tty/serial/Kconfig
|
|
+++ b/drivers/tty/serial/Kconfig
|
|
@@ -1580,7 +1580,7 @@ config SERIAL_NUVOTON_MA35D1_CONSOLE
|
|
|
|
config SERIAL_RPI_FW
|
|
tristate "Raspberry Pi Firmware software UART support"
|
|
- depends on ARM_AMBA || COMPILE_TEST
|
|
+ depends on RASPBERRYPI_FIRMWARE || COMPILE_TEST
|
|
select SERIAL_CORE
|
|
help
|
|
This selects the Raspberry Pi firmware UART. This is a bit-bashed
|