From: William Qiu <william.qiu@starfivetech.com>
To: Dan Carpenter <error27@gmail.com>
Cc: <linux-mmc@vger.kernel.org>
Subject: Re: [bug report] mmc: starfive: Add sdio/emmc driver support
Date: Mon, 27 Feb 2023 15:37:59 +0800 [thread overview]
Message-ID: <4dc6271e-b545-cf5f-dff8-7be8f00ea21d@starfivetech.com> (raw)
In-Reply-To: <Y/xb2nqWVQ8Xc3HI@kadam>
On 2023/2/27 15:29, Dan Carpenter wrote:
> On Mon, Feb 27, 2023 at 03:26:58PM +0800, William Qiu wrote:
>>
>>
>> On 2023/2/27 15:06, Dan Carpenter wrote:
>> > Hello William Qiu,
>> >
>> > The patch 9e622229bbf4: "mmc: starfive: Add sdio/emmc driver support"
>> > from Feb 15, 2023, leads to the following Smatch static checker
>> > warning:
>> >
>> > drivers/mmc/host/dw_mmc-starfive.c:77 dw_mci_starfive_execute_tuning()
>> > error: uninitialized symbol 'prev_err'.
>> >
>> > drivers/mmc/host/dw_mmc-starfive.c
>> > 47 static int dw_mci_starfive_execute_tuning(struct dw_mci_slot *slot,
>> > 48 u32 opcode)
>> > 49 {
>> > 50 static const int grade = MAX_DELAY_CHAIN;
>> > 51 struct dw_mci *host = slot->host;
>> > 52 struct starfive_priv *priv = host->priv;
>> > 53 int rise_point = -1, fall_point = -1;
>> > 54 int err, prev_err;
>> > 55 int i;
>> > 56 bool found = 0;
>> > 57 u32 regval;
>> > 58
>> > 59 /*
>> > 60 * Use grade as the max delay chain, and use the rise_point and
>> > 61 * fall_point to ensure the best sampling point of a data input
>> > 62 * signals.
>> > 63 */
>> > 64 for (i = 0; i < grade; i++) {
>> > 65 regval = i << priv->syscon_shift;
>> > 66 err = regmap_update_bits(priv->reg_syscon, priv->syscon_offset,
>> > 67 priv->syscon_mask, regval);
>> > 68 if (err)
>> > 69 return err;
>> > 70 mci_writel(host, RINTSTS, ALL_INT_CLR);
>> > 71
>> > 72 err = mmc_send_tuning(slot->mmc, opcode, NULL);
>> > 73 if (!err)
>> > 74 found = 1;
>> > 75
>> > 76 if (i > 0) {
>> > --> 77 if (err && !prev_err)
>> >
>> > prev_err was never initialized to zero.
>> >
>> Hi Carpenter,
>>
>> I will fixed it. But what should I do next,send a new version to fixed
>> it or send a patch to you?
>
> Heh?! No, leave me out of it. Just send a patch with a Fixes tag to
> the linux-mmc@vger.kernel.org and the maintainers and so on. Please
> give me a Reported-by: Dan Carpenter <error27@gmail.com> credit though.
>
> regards,
> dan carpenter
>
Fine, I'll do it then. Thanks anyway.
Best regards
William
prev parent reply other threads:[~2023-02-27 7:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-27 7:06 [bug report] mmc: starfive: Add sdio/emmc driver support Dan Carpenter
2023-02-27 7:26 ` William Qiu
2023-02-27 7:29 ` Dan Carpenter
2023-02-27 7:37 ` William Qiu [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=4dc6271e-b545-cf5f-dff8-7be8f00ea21d@starfivetech.com \
--to=william.qiu@starfivetech.com \
--cc=error27@gmail.com \
--cc=linux-mmc@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.