[PATCH v7 11/14] sata: ahci-da850: un-hardcode the MPY bits
Sekhar Nori
nsekhar at ti.com
Tue Jan 31 07:13:11 PST 2017
On Monday 30 January 2017 03:32 PM, Bartosz Golaszewski wrote:
> + /*
> + * The second clock used by ahci-da850 is the external REFCLK. If we
> + * didn't get it from ahci_platform_get_resources(), let's try to
> + * specify the con_id in clk_get().
> + */
> + if (!hpriv->clks[1]) {
> + clk = clk_get(dev, "refclk");
> + if (IS_ERR(clk)) {
> + dev_err(dev, "unable to obtain the reference clock");
> + return -ENODEV;
> + } else {
> + hpriv->clks[1] = clk;
> + }
This results in a checkpatch warning about the unneeded else. I fixed
this locally to look like:
+ */
+ if (!hpriv->clks[1]) {
+ clk = clk_get(dev, "refclk");
+ if (IS_ERR(clk)) {
+ dev_err(dev, "unable to obtain the reference clock");
+ return -ENODEV;
+ }
+
+ hpriv->clks[1] = clk;
+ }
Thanks,
Sekhar
More information about the linux-arm-kernel
mailing list