From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Jia-Ju Bai <baijiaju1990@gmail.com>
Cc: boris.brezillon@free-electrons.com, richard@nod.at,
dwmw2@infradead.org, computersforpeace@gmail.com,
marek.vasut@gmail.com, cyrille.pitchen@wedev4u.fr,
linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mtd: nand: diskonchip: Replace mdelay with usleep_range in doc_probe
Date: Sun, 22 Apr 2018 19:26:50 +0200 [thread overview]
Message-ID: <20180422192650.45fcfa4e@bbrezillon> (raw)
In-Reply-To: <1523415477-2850-1-git-send-email-baijiaju1990@gmail.com>
On Wed, 11 Apr 2018 10:57:57 +0800
Jia-Ju Bai <baijiaju1990@gmail.com> wrote:
> doc_probe() is never called in atomic context.
>
> doc_probe() is only called by init_nanddoc(), which is only set as
> a parameter of module_init().
> This function is not called in atomic context.
>
> Despite never getting called from atomic context, doc_probe()
> calls mdelay() to busily wait.
> This is not necessary and can be replaced with usleep_range() to
> avoid busy waiting.
>
> This is found by a static analysis tool named DCNS written by myself.
> And I also manually check it.
>
> Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
> ---
> drivers/mtd/nand/diskonchip.c | 4 ++--
Applied to nand/next after fixing the subject prefix and the file path.
Thanks,
Boris
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/nand/diskonchip.c b/drivers/mtd/nand/diskonchip.c
> index c3aa53c..2679bc4 100644
> --- a/drivers/mtd/nand/diskonchip.c
> +++ b/drivers/mtd/nand/diskonchip.c
> @@ -1482,12 +1482,12 @@ static int __init doc_probe(unsigned long physadr)
> WriteDOC(tmp, virtadr, Mplus_DOCControl);
> WriteDOC(~tmp, virtadr, Mplus_CtrlConfirm);
>
> - mdelay(1);
> + usleep_range(1000, 2000);
> /* Enable the Millennium Plus ASIC */
> tmp = DOC_MODE_NORMAL | DOC_MODE_MDWREN | DOC_MODE_RST_LAT | DOC_MODE_BDECT;
> WriteDOC(tmp, virtadr, Mplus_DOCControl);
> WriteDOC(~tmp, virtadr, Mplus_CtrlConfirm);
> - mdelay(1);
> + usleep_range(1000, 2000);
>
> ChipID = ReadDOC(virtadr, ChipID);
>
prev parent reply other threads:[~2018-04-22 17:27 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-11 2:57 [PATCH] mtd: nand: diskonchip: Replace mdelay with usleep_range in doc_probe Jia-Ju Bai
2018-04-22 17:26 ` Boris Brezillon [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=20180422192650.45fcfa4e@bbrezillon \
--to=boris.brezillon@bootlin.com \
--cc=baijiaju1990@gmail.com \
--cc=boris.brezillon@free-electrons.com \
--cc=computersforpeace@gmail.com \
--cc=cyrille.pitchen@wedev4u.fr \
--cc=dwmw2@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=richard@nod.at \
/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