linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Anibal Limon <anibal.limon@linaro.org>
To: linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH 3/5] soc: qcom: wcnss_ctrl: Introduce local variable "dev"
Date: Mon, 22 Mar 2021 15:01:49 -0600	[thread overview]
Message-ID: <7972761a-d5a7-1502-896d-489c875521fa@linaro.org> (raw)
In-Reply-To: <20210312003318.3273536-4-bjorn.andersson@linaro.org>



On 3/11/21 6:33 PM, Bjorn Andersson wrote:
> Introduce a local variable to carry the struct device *, to reduce the
> line lengths in the next patch.
> 
> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Tested-by: Aníbal Limón <anibal.limon@linaro.org>
> ---
>   drivers/soc/qcom/wcnss_ctrl.c | 9 +++++----
>   1 file changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/soc/qcom/wcnss_ctrl.c b/drivers/soc/qcom/wcnss_ctrl.c
> index 32bed249f90e..358526b9de06 100644
> --- a/drivers/soc/qcom/wcnss_ctrl.c
> +++ b/drivers/soc/qcom/wcnss_ctrl.c
> @@ -199,6 +199,7 @@ static int wcnss_download_nv(struct wcnss_ctrl *wcnss, bool *expect_cbc)
>   {
>   	struct wcnss_download_nv_req *req;
>   	const struct firmware *fw;
> +	struct device *dev = wcnss->dev;
>   	const void *data;
>   	ssize_t left;
>   	int ret;
> @@ -207,9 +208,9 @@ static int wcnss_download_nv(struct wcnss_ctrl *wcnss, bool *expect_cbc)
>   	if (!req)
>   		return -ENOMEM;
>   
> -	ret = request_firmware(&fw, NVBIN_FILE, wcnss->dev);
> +	ret = request_firmware(&fw, NVBIN_FILE, dev);
>   	if (ret < 0) {
> -		dev_err(wcnss->dev, "Failed to load nv file %s: %d\n",
> +		dev_err(dev, "Failed to load nv file %s: %d\n",
>   			NVBIN_FILE, ret);
>   		goto free_req;
>   	}
> @@ -235,7 +236,7 @@ static int wcnss_download_nv(struct wcnss_ctrl *wcnss, bool *expect_cbc)
>   
>   		ret = rpmsg_send(wcnss->channel, req, req->hdr.len);
>   		if (ret < 0) {
> -			dev_err(wcnss->dev, "failed to send smd packet\n");
> +			dev_err(dev, "failed to send smd packet\n");
>   			goto release_fw;
>   		}
>   
> @@ -248,7 +249,7 @@ static int wcnss_download_nv(struct wcnss_ctrl *wcnss, bool *expect_cbc)
>   
>   	ret = wait_for_completion_timeout(&wcnss->ack, WCNSS_REQUEST_TIMEOUT);
>   	if (!ret) {
> -		dev_err(wcnss->dev, "timeout waiting for nv upload ack\n");
> +		dev_err(dev, "timeout waiting for nv upload ack\n");
>   		ret = -ETIMEDOUT;
>   	} else {
>   		*expect_cbc = wcnss->ack_status == WCNSS_ACK_COLD_BOOTING;
> 

  reply	other threads:[~2021-03-22 21:02 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-12  0:33 [PATCH 0/5] qcom: wcnss: Allow overriding firmware form DT Bjorn Andersson
2021-03-12  0:33 ` [PATCH 1/5] dt-bindings: soc: qcom: wcnss: Add firmware-name property Bjorn Andersson
2021-03-22 21:00   ` Anibal Limon
2021-03-24 15:21   ` Rob Herring
2021-03-12  0:33 ` [PATCH 2/5] wcn36xx: Allow firmware name to be overridden by DT Bjorn Andersson
2021-03-15 11:58   ` Bryan O'Donoghue
2021-03-22 21:01   ` Anibal Limon
2021-03-12  0:33 ` [PATCH 3/5] soc: qcom: wcnss_ctrl: Introduce local variable "dev" Bjorn Andersson
2021-03-22 21:01   ` Anibal Limon [this message]
2021-03-12  0:33 ` [PATCH 4/5] soc: qcom: wcnss_ctrl: Allow reading firmware-name from DT Bjorn Andersson
2021-03-15 11:57   ` Bryan O'Donoghue
2021-03-22 21:02   ` Anibal Limon
2021-03-12  0:33 ` [PATCH 5/5] arm64: dts: qcom: msm8916: Enable modem and WiFi Bjorn Andersson
2021-03-15 11:57   ` Bryan O'Donoghue
2021-03-15 12:01   ` Bryan O'Donoghue
2021-03-18 14:50     ` Bjorn Andersson
2021-03-19 14:41       ` Bryan O'Donoghue
2021-03-19 15:19   ` Stephan Gerhold
2021-03-22 21:03     ` Anibal Limon
2021-05-31 16:33     ` Bjorn Andersson
2021-03-18 16:48 ` [PATCH 0/5] qcom: wcnss: Allow overriding firmware form DT Vinod Koul
2021-03-18 16:56 ` Jeffrey Hugo
2021-03-18 17:06   ` Bjorn Andersson
2021-03-18 18:12     ` Jeffrey Hugo

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=7972761a-d5a7-1502-896d-489c875521fa@linaro.org \
    --to=anibal.limon@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).