From: Claudiu Beznea Date: Mon, 30 Jan 2023 12:06:44 +0000 (+0200) Subject: ASoC: mchp-spdifrx: use unsigned long to store clk_get_rate() value X-Git-Tag: v6.6.7~3340^2~4^2~97^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36187a67ab931eae8b7d13d80fccd097971b7bac;p=platform%2Fkernel%2Flinux-starfive.git ASoC: mchp-spdifrx: use unsigned long to store clk_get_rate() value clk_get_rate() returns an unsigned long. Use a variable of type unsigned long to store it. Signed-off-by: Claudiu Beznea Link: https://lore.kernel.org/r/20230130120647.638049-6-claudiu.beznea@microchip.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/atmel/mchp-spdifrx.c b/sound/soc/atmel/mchp-spdifrx.c index b81fc77..90b2fb3 100644 --- a/sound/soc/atmel/mchp-spdifrx.c +++ b/sound/soc/atmel/mchp-spdifrx.c @@ -764,8 +764,8 @@ static int mchp_spdifrx_rate_get(struct snd_kcontrol *kcontrol, { struct snd_soc_dai *dai = snd_kcontrol_chip(kcontrol); struct mchp_spdifrx_dev *dev = snd_soc_dai_get_drvdata(dai); + unsigned long rate; u32 val; - int rate; mutex_lock(&dev->mlock);