From: Florian Fainelli <f.fainelli@gmail.com>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Doug Berger <opendmb@gmail.com>,
Florian Fainelli <f.fainelli@gmail.com>,
bcm-kernel-feedback-list@broadcom.com,
"David S. Miller" <davem@davemloft.net>,
netdev@vger.kernel.org
Subject: Re: [PATCH v1] net: bcmgenet: Use devm_clk_get_optional() to get the clocks
Date: Mon, 20 Apr 2020 11:33:07 -0700 [thread overview]
Message-ID: <c8d2dfb4-2833-7b68-3641-4f3ce2139cb2@gmail.com> (raw)
In-Reply-To: <20200420183058.67457-1-andriy.shevchenko@linux.intel.com>
On 4/20/2020 11:30 AM, Andy Shevchenko wrote:
> Conversion to devm_clk_get_optional() makes it explicit that clocks are
> optional. This change allows to handle deferred probe in case clocks are
> defined, but not yet probed. Due to above changes replace dev_dbg() by
> dev_err() and bail out in error case.
>
> While here, check potential error when enable main clock.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> .../net/ethernet/broadcom/genet/bcmgenet.c | 25 +++++++++++--------
> 1 file changed, 15 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/net/ethernet/broadcom/genet/bcmgenet.c b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
> index ef275db018f73..045f7b7f0b5d3 100644
> --- a/drivers/net/ethernet/broadcom/genet/bcmgenet.c
> +++ b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
> @@ -3487,13 +3487,16 @@ static int bcmgenet_probe(struct platform_device *pdev)
> priv->dma_max_burst_length = DMA_MAX_BURST_LENGTH;
> }
>
> - priv->clk = devm_clk_get(&priv->pdev->dev, "enet");
> + priv->clk = devm_clk_get_optional(&priv->pdev->dev, "enet");
> if (IS_ERR(priv->clk)) {
> - dev_dbg(&priv->pdev->dev, "failed to get enet clock\n");
> - priv->clk = NULL;
> + dev_err(&priv->pdev->dev, "failed to get enet clock\n");
Please maintain the dev_dbg() here and likewise for the rest of your
changes. With that:
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
--
Florian
next prev parent reply other threads:[~2020-04-20 18:33 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-20 18:30 [PATCH v1] net: bcmgenet: Use devm_clk_get_optional() to get the clocks Andy Shevchenko
2020-04-20 18:33 ` Florian Fainelli [this message]
2020-04-20 19:17 ` Andy Shevchenko
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=c8d2dfb4-2833-7b68-3641-4f3ce2139cb2@gmail.com \
--to=f.fainelli@gmail.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
--cc=opendmb@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;
as well as URLs for NNTP newsgroup(s).