mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
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);
|
|
}
|
|
|