Re: [PATCH v4] staging: bcm2835-audio: Release resources on module_exit()

From: Andy Shevchenko
Date: Fri Mar 23 2018 - 12:24:01 EST


On Thu, Mar 22, 2018 at 11:37 PM, Kirill Marinushkin
<k.marinushkin@xxxxxxxxx> wrote:


> +static void snd_devm_release(struct device *dev)
> +{
> + struct bcm2835_chip *chip = dev_get_drvdata(dev);
> +
> + kfree(chip);
> +}

> + device->release = snd_devm_release;

This is not devm function, so, it would be rather called
snd_bcm2835_release().

> static struct snd_card *snd_devm_card_new(struct device *dev)
> {
> struct snd_card *card;
> int ret;
>
> ret = snd_card_new(dev, -1, NULL, THIS_MODULE, 0, &card);
> + if (ret)
> return ERR_PTR(ret);
>
> return card;
> }

Same here. You removed anything related to devm here, so, please make
function name consistent.

After addressing above, FWIW,

Reviewed-by: Andy Shevchenko <andy.shevchenko@xxxxxxxxx>

--
With Best Regards,
Andy Shevchenko