From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Brian Masney <masneyb@onstation.org>
Cc: robdclark@gmail.com, agross@kernel.org,
linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
kbuild test robot <lkp@intel.com>
Subject: Re: [PATCH] soc: qcom: ocmem: add missing includes
Date: Mon, 7 Oct 2019 09:08:28 -0700 [thread overview]
Message-ID: <20191007160828.GL6390@tuxbook-pro> (raw)
In-Reply-To: <20190901213037.25889-1-masneyb@onstation.org>
On Sun 01 Sep 14:30 PDT 2019, Brian Masney wrote:
> The kbuild bot reported the following compiler errors when compiling on
> MIPS with CONFIG_QCOM_OCMEM disabled:
>
> In file included from <command-line>:0:0:
> >> include/soc/qcom/ocmem.h:43:49: warning: 'struct device' declared
> inside parameter list will not be visible outside of this
> definition or declaration
> static inline struct ocmem *of_get_ocmem(struct device *dev)
> ^~~~~~
> include/soc/qcom/ocmem.h: In function 'of_get_ocmem':
> >> include/soc/qcom/ocmem.h:45:9: error: implicit declaration of
> function 'ERR_PTR' [-Werror=implicit-function-declaration]
> return ERR_PTR(-ENODEV);
> ^~~~~~~
> >> include/soc/qcom/ocmem.h:45:18: error: 'ENODEV' undeclared (first
> use in this function)
> return ERR_PTR(-ENODEV);
>
> Add the proper includes to fix the compiler errors.
>
> Signed-off-by: Brian Masney <masneyb@onstation.org>
> Reported-by: kbuild test robot <lkp@intel.com>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> ---
> My OCMEM series [1] hasn't landed upstream yet so let me know if you
> want me to squash this into the existing patch set. I made this a
> separate patch so that the Reported-by could be included. The kbuild
> report is at [2].
>
> [1] https://lore.kernel.org/lkml/20190823121637.5861-1-masneyb@onstation.org/
> [2] https://lists.01.org/pipermail/kbuild-all/2019-August/063530.html
>
> include/soc/qcom/ocmem.h | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/include/soc/qcom/ocmem.h b/include/soc/qcom/ocmem.h
> index a0ae336ba78b..02a8bc2677b1 100644
> --- a/include/soc/qcom/ocmem.h
> +++ b/include/soc/qcom/ocmem.h
> @@ -9,6 +9,9 @@
> * Copyright (C) 2015 Red Hat. Author: Rob Clark <robdclark@gmail.com>
> */
>
> +#include <linux/device.h>
> +#include <linux/err.h>
> +
> #ifndef __OCMEM_H__
> #define __OCMEM_H__
>
> --
> 2.21.0
>
prev parent reply other threads:[~2019-10-07 16:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-01 21:30 [PATCH] soc: qcom: ocmem: add missing includes Brian Masney
2019-10-07 16:08 ` Bjorn Andersson [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191007160828.GL6390@tuxbook-pro \
--to=bjorn.andersson@linaro.org \
--cc=agross@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lkp@intel.com \
--cc=masneyb@onstation.org \
--cc=robdclark@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox