The patches were generated from the RPi repo with the following command: git format-patch v6.6.58..rpi-6.6.y Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
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
|
|
@@ -3122,6 +3122,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);
|
|
}
|
|
|