Update patch set for new release and add required kernel option CONFIG_ZRAM_TRACK_ENTRY_ACTIME to generic config Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.66 Manually rebased: bcm27xx/patches-6.6/950-0092-MMC-added-alternative-MMC-driver.patch bcm53xx/patches-6.6/180-usb-xhci-add-support-for-performing-fake-doorbell.patch starfive/patches-6.6/1000-serial-8250_dw-Add-starfive-jh7100-hsuart-compatible.patch Removed upstreamed: bcm27xx/patches-6.6/950-0029-vc4_hdmi-Avoid-log-spam-for-audio-start-failure.patch[1] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.66&id=e0388a95736abd1f5f5a94221dd1ac24eacbd4d7 Build system: x86/64 Build-tested: bcm27xx/bcm2712, flogic/glinet_gl-mt6000, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3, x86/64 Run-tested: bcm27xx/bcm2712, flogic/glinet_gl-mt6000, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3, x86/64 Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/17271 (cherry picked from commit 28f534d953b1163548610554981763d24fde6d03) Link: https://github.com/openwrt/openwrt/pull/17302 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
23 lines
757 B
Diff
23 lines
757 B
Diff
From 0fb3c83a9fa3011cb735ec011b7582d4749957b2 Mon Sep 17 00:00:00 2001
|
|
From: Dom Cobley <popcornmix@gmail.com>
|
|
Date: Fri, 20 Sep 2024 12:21:27 +0100
|
|
Subject: [PATCH 1282/1350] tty/serial: pl011: Also unregister
|
|
pl011_axi_platform_driver
|
|
|
|
See: https://github.com/raspberrypi/linux/issues/6379
|
|
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
|
|
---
|
|
drivers/tty/serial/amba-pl011.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/tty/serial/amba-pl011.c
|
|
+++ b/drivers/tty/serial/amba-pl011.c
|
|
@@ -3129,6 +3129,7 @@ static int __init pl011_init(void)
|
|
static void __exit pl011_exit(void)
|
|
{
|
|
platform_driver_unregister(&arm_sbsa_uart_platform_driver);
|
|
+ platform_driver_unregister(&pl011_axi_platform_driver);
|
|
amba_driver_unregister(&pl011_driver);
|
|
}
|
|
|