Message ID | 20220423164443.146299-1-biju.das.jz@bp.renesas.com (mailing list archive) |
---|---|
State | Accepted |
Commit | cc691ba94cf8d6c586076ed489bb9d385a2650ad |
Headers | show |
Series | ASoC: sh: Make SND_SOC_RZ depend on ARCH_RZG2L | expand |
On Sat, Apr 23, 2022 at 6:44 PM Biju Das <biju.das.jz@bp.renesas.com> wrote: > The SSI block is identical on Renesas RZ/G2L, RZ/G2UL and RZ/V2L SoC's, so > instead of adding dependency for each SoC's add dependency on ARCH_RZG2L. > The ARCH_RZG2L config option is already selected by ARCH_R9A07G043, > ARCH_R9A07G044 and ARCH_R9A07G054. > > Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds
On Sat, 23 Apr 2022 17:44:43 +0100, Biju Das wrote: > The SSI block is identical on Renesas RZ/G2L, RZ/G2UL and RZ/V2L SoC's, so > instead of adding dependency for each SoC's add dependency on ARCH_RZG2L. > The ARCH_RZG2L config option is already selected by ARCH_R9A07G043, > ARCH_R9A07G044 and ARCH_R9A07G054. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: sh: Make SND_SOC_RZ depend on ARCH_RZG2L commit: cc691ba94cf8d6c586076ed489bb9d385a2650ad 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/sh/Kconfig b/sound/soc/sh/Kconfig index ae46f187cc2a..97916e3ca9dd 100644 --- a/sound/soc/sh/Kconfig +++ b/sound/soc/sh/Kconfig @@ -47,7 +47,7 @@ config SND_SOC_RCAR config SND_SOC_RZ tristate "RZ/G2L series SSIF-2 support" - depends on ARCH_R9A07G044 || COMPILE_TEST + depends on ARCH_RZG2L || COMPILE_TEST help This option enables RZ/G2L SSIF-2 sound support.
The SSI block is identical on Renesas RZ/G2L, RZ/G2UL and RZ/V2L SoC's, so instead of adding dependency for each SoC's add dependency on ARCH_RZG2L. The ARCH_RZG2L config option is already selected by ARCH_R9A07G043, ARCH_R9A07G044 and ARCH_R9A07G054. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> --- sound/soc/sh/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)