mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 06:26:15 +00:00
1bbd5fdab6
No content changes. Only take over the new patch locations. With this patch all platform specific changes for kernel 6.6 are in place. Realtek devices are bootable from serial console. VPE is fully functional on devices that support it. The switch functions (ethernet and DSA) are not enabled yet. Boot tested on RTL8380 (Linksys LGS310C) and RTL8393 (Zyxel GS1920-24). Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de>
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 800d5fb3c6a16661932c932bacd660e38d06b727 Mon Sep 17 00:00:00 2001
|
|
From: Markus Stockhausen <markus.stockhausen@gmx.de>
|
|
Date: Thu, 25 Aug 2022 08:22:36 +0200
|
|
Subject: [PATCH] realtek: add patch to enable new clock driver in kernel
|
|
|
|
Allow building the clock driver with kernel config options.
|
|
|
|
Submitted-by: Markus Stockhausen <markus.stockhausen@gmx.de>
|
|
---
|
|
drivers/clk/Kconfig | 1 +
|
|
drivers/clk/Makefile | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
--- a/drivers/clk/Kconfig
|
|
+++ b/drivers/clk/Kconfig
|
|
@@ -484,6 +484,7 @@ source "drivers/clk/mvebu/Kconfig"
|
|
source "drivers/clk/nuvoton/Kconfig"
|
|
source "drivers/clk/pistachio/Kconfig"
|
|
source "drivers/clk/qcom/Kconfig"
|
|
+source "drivers/clk/realtek/Kconfig"
|
|
source "drivers/clk/ralink/Kconfig"
|
|
source "drivers/clk/renesas/Kconfig"
|
|
source "drivers/clk/rockchip/Kconfig"
|
|
--- a/drivers/clk/Makefile
|
|
+++ b/drivers/clk/Makefile
|
|
@@ -112,6 +112,7 @@ obj-$(CONFIG_COMMON_CLK_PISTACHIO) += pi
|
|
obj-$(CONFIG_COMMON_CLK_PXA) += pxa/
|
|
obj-$(CONFIG_COMMON_CLK_QCOM) += qcom/
|
|
obj-y += ralink/
|
|
+obj-$(CONFIG_COMMON_CLK_REALTEK) += realtek/
|
|
obj-y += renesas/
|
|
obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
|
|
obj-$(CONFIG_COMMON_CLK_SAMSUNG) += samsung/
|