Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1508562
| From | David Lechner <david@lechnology.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 1/3] usb: musb: da8xx: Call earlier clk_prepare_enable() |
| Date | 2016-10-25 21:10 +0200 |
| Message-ID | <swfgJ-1ib-9@gated-at.bofh.it> (permalink) |
| References | <swaqJ-6ln-13@gated-at.bofh.it> <swaqJ-6ln-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 10/25/2016 08:52 AM, Alexandre Bailon wrote:
> The first attempt to read a register may fail because the clock may not
> be enabled, and then the probe of musb driver will fail.
> Call clk_prepare_enable() before the first register read.
>
> Signed-off-by: Alexandre Bailon <abailon@baylibre.com>
> ---
> drivers/usb/musb/da8xx.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c
> index 210b7e4..ec93602 100644
> --- a/drivers/usb/musb/da8xx.c
> +++ b/drivers/usb/musb/da8xx.c
> @@ -366,6 +366,12 @@ static int da8xx_musb_init(struct musb *musb)
>
> musb->mregs += DA8XX_MENTOR_CORE_OFFSET;
>
> + ret = clk_prepare_enable(glue->clk);
> + if (ret) {
> + dev_err(glue->dev, "failed to enable clock\n");
> + goto fail;
You can simply return ret; here instead of goto fail;
> + }
> +
> /* Returns zero if e.g. not clocked */
> rev = musb_readl(reg_base, DA8XX_USB_REVISION_REG);
> if (!rev)
> @@ -377,12 +383,6 @@ static int da8xx_musb_init(struct musb *musb)
> goto fail;
The unwinding on error needs to be updated so that
clk_disable_unprepare() is called at this point and subsequently.
Currently, all goto fail; will return without disabling the clock.
> }
>
> - ret = clk_prepare_enable(glue->clk);
> - if (ret) {
> - dev_err(glue->dev, "failed to enable clock\n");
> - goto fail;
> - }
> -
> setup_timer(&otg_workaround, otg_timer, (unsigned long)musb);
>
> /* Reset the controller */
>
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH 1/3] usb: musb: da8xx: Call earlier clk_prepare_enable() Alexandre Bailon <abailon@baylibre.com> - 2016-10-25 16:00 +0200 Re: [PATCH 1/3] usb: musb: da8xx: Call earlier clk_prepare_enable() David Lechner <david@lechnology.com> - 2016-10-25 21:10 +0200
csiph-web