mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
|
From f35a07f92616700733636c06dd6e5b6cdc807fe4 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
||
|
Date: Wed, 25 Nov 2020 10:06:08 +0100
|
||
|
Subject: [PATCH] tty: serial: bcm63xx: lower driver dependencies
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Hardware supported by bcm63xx is also used by BCM4908 SoCs family that
|
||
|
is ARM64. In future more architectures may need it as well. There is
|
||
|
nothing arch specific breaking compilation so just stick to requiring
|
||
|
COMMON_CLK.
|
||
|
|
||
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
||
|
Link: https://lore.kernel.org/r/20201125090608.28442-1-zajec5@gmail.com
|
||
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
||
|
---
|
||
|
drivers/tty/serial/Kconfig | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/drivers/tty/serial/Kconfig
|
||
|
+++ b/drivers/tty/serial/Kconfig
|
||
|
@@ -1133,7 +1133,7 @@ config SERIAL_TIMBERDALE
|
||
|
config SERIAL_BCM63XX
|
||
|
tristate "Broadcom BCM63xx/BCM33xx UART support"
|
||
|
select SERIAL_CORE
|
||
|
- depends on MIPS || ARM || COMPILE_TEST
|
||
|
+ depends on COMMON_CLK
|
||
|
help
|
||
|
This enables the driver for the onchip UART core found on
|
||
|
the following chipsets:
|