Re: [PATCH] remoteproc: qcom: q6v5-mss: Fix kfree build error

From: Naresh Kamboju
Date: Wed Jun 17 2020 - 09:49:23 EST


+ linux-remoteproc@xxxxxxxxxxxxxxx

On Wed, 17 Jun 2020 at 12:27, Naresh Kamboju <naresh.kamboju@xxxxxxxxxx> wrote:
>
> This patch adds linux/slab.h to fix build error in qcom_q6v5_mss.c
>
> Build error:
> ../drivers/remoteproc/qcom_q6v5_mss.c:
> In function âq6v5_mpss_init_imageâ:
> ../drivers/remoteproc/qcom_q6v5_mss.c:772:3:
> error: implicit declaration of function âkfreeâ;
> did you mean âvfreeâ? [-Werror=implicit-function-declaration]
> 772 | kfree(metadata);
> | ^~~~~
> | vfree
>
> Signed-off-by: Naresh Kamboju <naresh.kamboju@xxxxxxxxxx>
> ---
> drivers/remoteproc/qcom_q6v5_mss.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/remoteproc/qcom_q6v5_mss.c b/drivers/remoteproc/qcom_q6v5_mss.c
> index feb70283b6a2..903b2bb97e12 100644
> --- a/drivers/remoteproc/qcom_q6v5_mss.c
> +++ b/drivers/remoteproc/qcom_q6v5_mss.c
> @@ -26,6 +26,7 @@
> #include <linux/reset.h>
> #include <linux/soc/qcom/mdt_loader.h>
> #include <linux/iopoll.h>
> +#include <linux/slab.h>
>
> #include "remoteproc_internal.h"
> #include "qcom_common.h"
> --
> 2.17.1
>