Since the start of the Realtek target OpenWrt works with RTL83XX as the target architecture. Upstream is using MACH_REALTEK_RTL instead. To simplify further development align that. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/16963 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> (cherry picked from commit 65964c42f8744ed8ca09448a155b99e3a99be283) Link: https://github.com/openwrt/openwrt/pull/17097 Signed-off-by: Petr Štetiar <ynezz@true.cz>
20 lines
550 B
Plaintext
20 lines
550 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
menuconfig COMMON_CLK_REALTEK
|
|
bool "Support for Realtek's clock controllers"
|
|
depends on MACH_REALTEK_RTL
|
|
|
|
if COMMON_CLK_REALTEK
|
|
|
|
config COMMON_CLK_RTL83XX
|
|
bool "Clock driver for Realtek RTL83XX"
|
|
depends on MACH_REALTEK_RTL
|
|
select SRAM
|
|
help
|
|
This driver adds support for the Realtek RTL83xx series basic clocks.
|
|
This includes chips in the RTL838x series, such as RTL8380, RTL8381,
|
|
RTL832, as well as chips from the RTL839x series, such as RTL8390,
|
|
RT8391, RTL8392, RTL8393 and RTL8396.
|
|
|
|
endif
|