From: Andrew Lunn <andrew@lunn.ch>
To: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Cc: linux-ide@vger.kernel.org, Tejun Heo <tj@kernel.org>,
Andrew Lunn <andrew@lunn.ch>, Lior Amsalem <alior@marvell.com>,
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
Gregory Clement <gregory.clement@free-electrons.com>
Subject: Re: [PATCH v2] ATA: sata_mv: Remove unneeded CONFIG_HAVE_CLK ifdefs
Date: Tue, 30 Jul 2013 09:05:33 +0200 [thread overview]
Message-ID: <20130730070533.GL24782@lunn.ch> (raw)
In-Reply-To: <1375152363-3451-1-git-send-email-ezequiel.garcia@free-electrons.com>
On Mon, Jul 29, 2013 at 11:46:03PM -0300, Ezequiel Garcia wrote:
> If CONFIG_HAVE_CLK is not selected, then all the clk API turn out
> into no-ops. In other words, there's no need to have the ifdefs.
>
> The only side-effect of this patch is the extra tiny kmalloc,
> but that's not enough reason to have such ugly ifdefs all around
> the code.
>
> Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
> ---
> Changes from v1:
> * Add a comment in struct mv_host_priv clarifying the optional clk fields.
>
> drivers/ata/sata_mv.c | 21 +++++++--------------
> 1 file changed, 7 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
> index 10ea99a..231d510 100644
> --- a/drivers/ata/sata_mv.c
> +++ b/drivers/ata/sata_mv.c
> @@ -553,10 +553,15 @@ struct mv_host_priv {
> u32 irq_mask_offset;
> u32 unmask_all_irqs;
>
> -#if defined(CONFIG_HAVE_CLK)
> + /*
> + * Needed on some devices that require their clocks to be enabled.
> + * These are optional: if the platform device does not any clocks
does not _have_ any clocks
Otherwise:
Acked-by: Andrew Lunn <andrew@lunn.ch>
Andrew
> + * they won't be used. Furthermore, if the underlying hardware does
> + * not support the common clock framework (CONFIG_HAVE_CLK=n) then
> + * all the clock operations become no-ops (see clk.h).
> + */
> struct clk *clk;
> struct clk **port_clks;
> -#endif
> /*
> * These consistent DMA memory pools give us guaranteed
> * alignment for hardware-accessed data structures,
> @@ -4032,9 +4037,7 @@ static int mv_platform_probe(struct platform_device *pdev)
> struct resource *res;
> int n_ports = 0, irq = 0;
> int rc;
> -#if defined(CONFIG_HAVE_CLK)
> int port;
> -#endif
>
> ata_print_version_once(&pdev->dev, DRV_VERSION);
>
> @@ -4068,13 +4071,11 @@ static int mv_platform_probe(struct platform_device *pdev)
>
> if (!host || !hpriv)
> return -ENOMEM;
> -#if defined(CONFIG_HAVE_CLK)
> hpriv->port_clks = devm_kzalloc(&pdev->dev,
> sizeof(struct clk *) * n_ports,
> GFP_KERNEL);
> if (!hpriv->port_clks)
> return -ENOMEM;
> -#endif
> host->private_data = hpriv;
> hpriv->n_ports = n_ports;
> hpriv->board_idx = chip_soc;
> @@ -4084,7 +4085,6 @@ static int mv_platform_probe(struct platform_device *pdev)
> resource_size(res));
> hpriv->base -= SATAHC0_REG_BASE;
>
> -#if defined(CONFIG_HAVE_CLK)
> hpriv->clk = clk_get(&pdev->dev, NULL);
> if (IS_ERR(hpriv->clk))
> dev_notice(&pdev->dev, "cannot get optional clkdev\n");
> @@ -4098,7 +4098,6 @@ static int mv_platform_probe(struct platform_device *pdev)
> if (!IS_ERR(hpriv->port_clks[port]))
> clk_prepare_enable(hpriv->port_clks[port]);
> }
> -#endif
>
> /*
> * (Re-)program MBUS remapping windows if we are asked to.
> @@ -4124,7 +4123,6 @@ static int mv_platform_probe(struct platform_device *pdev)
> return 0;
>
> err:
> -#if defined(CONFIG_HAVE_CLK)
> if (!IS_ERR(hpriv->clk)) {
> clk_disable_unprepare(hpriv->clk);
> clk_put(hpriv->clk);
> @@ -4135,7 +4133,6 @@ err:
> clk_put(hpriv->port_clks[port]);
> }
> }
> -#endif
>
> return rc;
> }
> @@ -4151,13 +4148,10 @@ err:
> static int mv_platform_remove(struct platform_device *pdev)
> {
> struct ata_host *host = platform_get_drvdata(pdev);
> -#if defined(CONFIG_HAVE_CLK)
> struct mv_host_priv *hpriv = host->private_data;
> int port;
> -#endif
> ata_host_detach(host);
>
> -#if defined(CONFIG_HAVE_CLK)
> if (!IS_ERR(hpriv->clk)) {
> clk_disable_unprepare(hpriv->clk);
> clk_put(hpriv->clk);
> @@ -4168,7 +4162,6 @@ static int mv_platform_remove(struct platform_device *pdev)
> clk_put(hpriv->port_clks[port]);
> }
> }
> -#endif
> return 0;
> }
>
> --
> 1.8.1.5
>
next prev parent reply other threads:[~2013-07-30 7:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-30 2:46 [PATCH v2] ATA: sata_mv: Remove unneeded CONFIG_HAVE_CLK ifdefs Ezequiel Garcia
2013-07-30 7:05 ` Andrew Lunn [this message]
2013-07-30 13:04 ` Tejun Heo
2013-07-30 13:16 ` Ezequiel Garcia
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=20130730070533.GL24782@lunn.ch \
--to=andrew@lunn.ch \
--cc=alior@marvell.com \
--cc=ezequiel.garcia@free-electrons.com \
--cc=gregory.clement@free-electrons.com \
--cc=linux-ide@vger.kernel.org \
--cc=thomas.petazzoni@free-electrons.com \
--cc=tj@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.