Re: [PATCH v5 2/5] clk: imx: clk-audiomix: Add reset controller

From: Markus Elfring
Date: Sat May 25 2024 - 03:27:56 EST



> The reset controller is supported by the auxiliary device
> framework.

Would you like to add an imperative wording for an improved change description?
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.9#n94



> +++ b/drivers/clk/imx/clk-imx8mp-audiomix.c

> +static int clk_imx8mp_audiomix_reset_controller_register(struct device *dev,
> + struct clk_imx8mp_audiomix_priv *priv)
> +{
> + struct auxiliary_device __free(kfree) * adev = NULL;
> + int ret;
> +
> + adev = kzalloc(sizeof(*adev), GFP_KERNEL);


May the following source code variant be applied here?

int ret;
struct auxiliary_device __free(kfree) *adev = kzalloc(sizeof(*adev), GFP_KERNEL);


Regards,
Markus