Message ID | 20201116175133.402553-1-krzk@kernel.org |
---|---|
State | New |
Headers | show |
Series | [1/4] ASoC: meson: depend on COMMON_CLK to fix compile tests | expand |
On Mon, Nov 16, 2020 at 06:51:30PM +0100, Krzysztof Kozlowski wrote: > The Meson SoC sound drivers use Common Clock Framework thus they cannot > be built on platforms without it (e.g. compile test on MIPS with RALINK > and SOC_RT305X): This doesn't apply against current code, please check and resend.
On Mon, 16 Nov 2020 18:51:30 +0100, Krzysztof Kozlowski wrote: > The Meson SoC sound drivers use Common Clock Framework thus they cannot > be built on platforms without it (e.g. compile test on MIPS with RALINK > and SOC_RT305X): > > /usr/bin/mips-linux-gnu-ld: sound/soc/meson/aiu-encoder-spdif.o: in function `aiu_encoder_spdif_startup': > aiu-encoder-spdif.c:(.text+0x3a0): undefined reference to `clk_set_parent' > /usr/bin/mips-linux-gnu-ld: sound/soc/meson/axg-tdm-formatter.o: in function `axg_tdm_formatter_event': > (.text+0x7ec): undefined reference to `clk_set_parent' Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/4] ASoC: meson: depend on COMMON_CLK to fix compile tests (no commit info) [2/4] ASoC: sh: depend on COMMON_CLK to fix compile tests commit: c3d900dc905b78788c94f3a063b769bdbad16a98 [3/4] ASoC: stm: depend on COMMON_CLK to fix compile tests commit: 82ceffce96336ee9863f3dfde63aef5748ca4ab1 [4/4] ASoC: ti: depend on COMMON_CLK to fix compile tests commit: b3cf78e0dacb7fba50d0c1eb9dfa6f92d31529e2 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/meson/Kconfig b/sound/soc/meson/Kconfig index 363dc3b1bbe4..dd8a05e61f58 100644 --- a/sound/soc/meson/Kconfig +++ b/sound/soc/meson/Kconfig @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-only menu "ASoC support for Amlogic platforms" - depends on ARCH_MESON || COMPILE_TEST + depends on ARCH_MESON || COMPILE_TEST && COMMON_CLK config SND_MESON_AIU tristate "Amlogic AIU"
The Meson SoC sound drivers use Common Clock Framework thus they cannot be built on platforms without it (e.g. compile test on MIPS with RALINK and SOC_RT305X): /usr/bin/mips-linux-gnu-ld: sound/soc/meson/aiu-encoder-spdif.o: in function `aiu_encoder_spdif_startup': aiu-encoder-spdif.c:(.text+0x3a0): undefined reference to `clk_set_parent' /usr/bin/mips-linux-gnu-ld: sound/soc/meson/axg-tdm-formatter.o: in function `axg_tdm_formatter_event': (.text+0x7ec): undefined reference to `clk_set_parent' Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> --- sound/soc/meson/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)