mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2025-12-26 06:28:50 +01:00
40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
diff --git a/arch/arm/boot/dts/sun8i-v3s-funkey.dts b/arch/arm/boot/dts/sun8i-v3s-funkey.dts
|
|
index ad694808..3be3c7f1 100644
|
|
--- a/arch/arm/boot/dts/sun8i-v3s-funkey.dts
|
|
+++ b/arch/arm/boot/dts/sun8i-v3s-funkey.dts
|
|
@@ -74,6 +74,10 @@
|
|
status = "okay";
|
|
};
|
|
|
|
+&codec_analog {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
&ehci0 {
|
|
status = "okay";
|
|
};
|
|
diff --git a/arch/arm/boot/dts/sun8i-v3s.dtsi b/arch/arm/boot/dts/sun8i-v3s.dtsi
|
|
index 5379f2d7..02f6c844 100644
|
|
--- a/arch/arm/boot/dts/sun8i-v3s.dtsi
|
|
+++ b/arch/arm/boot/dts/sun8i-v3s.dtsi
|
|
@@ -433,6 +444,7 @@
|
|
codec_analog: codec-analog@01c23000 {
|
|
compatible = "allwinner,sun8i-v3s-codec-analog";
|
|
reg = <0x01c23000 0x4>;
|
|
+ status = "disabled";
|
|
};
|
|
|
|
uart0: serial@01c28000 {
|
|
diff --git a/sound/soc/sunxi/Makefile b/sound/soc/sunxi/Makefile
|
|
index 4a9ef673..655780ab 100644
|
|
--- a/sound/soc/sunxi/Makefile
|
|
+++ b/sound/soc/sunxi/Makefile
|
|
@@ -1,6 +1,6 @@
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
+obj-$(CONFIG_SND_SUN8I_CODEC_ANALOG) += sun8i-codec-analog.o
|
|
obj-$(CONFIG_SND_SUN4I_CODEC) += sun4i-codec.o
|
|
obj-$(CONFIG_SND_SUN4I_I2S) += sun4i-i2s.o
|
|
obj-$(CONFIG_SND_SUN4I_SPDIF) += sun4i-spdif.o
|
|
-obj-$(CONFIG_SND_SUN8I_CODEC_ANALOG) += sun8i-codec-analog.o
|
|
obj-$(CONFIG_SND_SUN8I_CODEC) += sun8i-codec.o
|