lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Fri, 19 May 2017 18:33:59 +0100
From:   Mark Brown <broonie@...nel.org>
To:     olivier moysan <olivier.moysan@...com>
Cc:     lgirdwood@...il.com, perex@...ex.cz, tiwai@...e.com,
        mcoquelin.stm32@...il.com, alexandre.torgue@...com,
        alsa-devel@...a-project.org, robh@...nel.org, mark.rutland@....com,
        devicetree@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
        kernel@...inux.com, linux-kernel@...r.kernel.org,
        arnaud.pouliquen@...com, benjamin.gaignard@...com
Subject: Re: [PATCH v4 2/3] ASoC: stm32: Add I2S driver

On Thu, May 18, 2017 at 05:19:52PM +0200, olivier moysan wrote:

This looks good so I'm going to apply it, a few things below though -
can you please send a followup patch for the issue with the Kconfig
symbol?

> --- a/sound/soc/stm/Kconfig
> +++ b/sound/soc/stm/Kconfig
> @@ -5,4 +5,4 @@ menuconfig SND_SOC_STM32
>  	select SND_SOC_GENERIC_DMAENGINE_PCM
>  	select REGMAP_MMIO
>  	help
> -	  Say Y if you want to enable ASoC-support for STM32
> +	  Say Y if you want to enable ASoC support for STM32

This appears to be an unrelated typo fix.

> diff --git a/sound/soc/stm/Makefile b/sound/soc/stm/Makefile
> index e466a47..8251931 100644
> --- a/sound/soc/stm/Makefile
> +++ b/sound/soc/stm/Makefile
> @@ -4,3 +4,7 @@ obj-$(CONFIG_SND_SOC_STM32) += snd-soc-stm32-sai-sub.o
>  
>  snd-soc-stm32-sai-objs := stm32_sai.o
>  obj-$(CONFIG_SND_SOC_STM32) += snd-soc-stm32-sai.o
> +
> +# I2S
> +snd-soc-stm32-i2s-objs := stm32_i2s.o
> +obj-$(CONFIG_SND_SOC_STM32) += snd-soc-stm32-i2s.o

Perhaps make this a separate option?  It probably makes sense to rename
the option for the SAI at the same time.

> +
> +	ret = clk_prepare_enable(i2s->pclk);
> +	if (ret) {
> +		dev_err(&pdev->dev, "Enable pclk failed: %d\n", ret);
> +		return ret;
> +	}
> +
> +	ret = clk_prepare_enable(i2s->i2sclk);
> +	if (ret) {
> +		dev_err(&pdev->dev, "Enable i2sclk failed: %d\n", ret);
> +		goto err_pclk_disable;
> +	}

It'd be nice to have runtime PM to disable these when the device is idle
but that's not essential.

Download attachment "signature.asc" of type "application/pgp-signature" (489 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ