From: Bjorn Helgaas <bhelgaas@google.com>
To: Ray Jui <rjui@broadcom.com>
Cc: SF Markus Elfring <elfring@users.sourceforge.net>,
Scott Branden <sbranden@broadcom.com>,
linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
bcm-kernel-feedback-list@broadcom.com,
LKML <linux-kernel@vger.kernel.org>,
kernel-janitors@vger.kernel.org,
Hauke Mehrtens <hauke@hauke-m.de>,
Julia Lawall <julia.lawall@lip6.fr>
Subject: Re: [PATCH] PCI-iproc: Delete unnecessary checks before two function calls
Date: Tue, 14 Jul 2015 15:51:28 -0500 [thread overview]
Message-ID: <20150714205128.GI24416@google.com> (raw)
In-Reply-To: <55A56FBB.20203@broadcom.com>
On Tue, Jul 14, 2015 at 01:23:23PM -0700, Ray Jui wrote:
> Hi Bjorn,
>
> On 7/14/2015 1:10 PM, Bjorn Helgaas wrote:
> > On Sun, Jun 28, 2015 at 04:52:16PM +0200, SF Markus Elfring wrote:
> >> From: Markus Elfring <elfring@users.sourceforge.net>
> >> Date: Sun, 28 Jun 2015 16:42:04 +0200
> >>
> >> The functions phy_exit() and phy_power_off() test whether their argument
> >> is NULL and then return immediately.
> >> Thus the test around the calls is not needed.
> >>
> >> This issue was detected by using the Coccinelle software.
> >>
> >> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
> >
> > I haven't seen a followup to Ray's review, but in the interest of making
> > progress, I updated and applied the patch as appended. I also reviewed
> > other phy_*() calls under drivers/pci, and they all look OK (with no
> > unnecessary tests for NULL).
> >
> > This is on the pci/host-iproc branch for v4.3.
> >
>
> Hmmm....I searched my mailbox but cannot find an email with this patch
> (while I remember I reviewed and commented on the initial version of
> this patch). It must have gone into some sub-folder or deleted by me by
> accident. My bad.
>
> Nevertheless,the current patch looks good to me!
Thanks for checking it out! Can I add your Reviewed-by to the patch below?
> > commit 55b5e16332eb9ffc1cbaf975585f4521417ab427
> > Author: Markus Elfring <elfring@users.sourceforge.net>
> > Date: Sun Jun 28 16:42:04 2015 +0200
> >
> > PCI: iproc: Delete unnecessary checks before phy calls
> >
> > The functions phy_exit() and phy_power_off() test whether their argument is
> > NULL and then return immediately. Thus the test around the calls is not
> > needed.
> >
> > This issue was detected by using the Coccinelle software.
> >
> > [bhelgaas: also phy_init() and phy_power_on(), as Ray Jui suggested]
> > [bhelgaas: also remove tests in iproc_pcie_remove()]
> > Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
> > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
> >
> > diff --git a/drivers/pci/host/pcie-iproc.c b/drivers/pci/host/pcie-iproc.c
> > index d77481e..9a00dca 100644
> > --- a/drivers/pci/host/pcie-iproc.c
> > +++ b/drivers/pci/host/pcie-iproc.c
> > @@ -191,19 +191,16 @@ int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res)
> > if (!pcie || !pcie->dev || !pcie->base)
> > return -EINVAL;
> >
> > - if (pcie->phy) {
> > - ret = phy_init(pcie->phy);
> > - if (ret) {
> > - dev_err(pcie->dev, "unable to initialize PCIe PHY\n");
> > - return ret;
> > - }
> > -
> > - ret = phy_power_on(pcie->phy);
> > - if (ret) {
> > - dev_err(pcie->dev, "unable to power on PCIe PHY\n");
> > - goto err_exit_phy;
> > - }
> > + ret = phy_init(pcie->phy);
> > + if (ret) {
> > + dev_err(pcie->dev, "unable to initialize PCIe PHY\n");
> > + return ret;
> > + }
> >
> > + ret = phy_power_on(pcie->phy);
> > + if (ret) {
> > + dev_err(pcie->dev, "unable to power on PCIe PHY\n");
> > + goto err_exit_phy;
> > }
> >
> > iproc_pcie_reset(pcie);
> > @@ -239,12 +236,9 @@ err_rm_root_bus:
> > pci_remove_root_bus(bus);
> >
> > err_power_off_phy:
> > - if (pcie->phy)
> > - phy_power_off(pcie->phy);
> > + phy_power_off(pcie->phy);
> > err_exit_phy:
> > - if (pcie->phy)
> > - phy_exit(pcie->phy);
> > -
> > + phy_exit(pcie->phy);
> > return ret;
> > }
> > EXPORT_SYMBOL(iproc_pcie_setup);
> > @@ -254,10 +248,8 @@ int iproc_pcie_remove(struct iproc_pcie *pcie)
> > pci_stop_root_bus(pcie->root_bus);
> > pci_remove_root_bus(pcie->root_bus);
> >
> > - if (pcie->phy) {
> > - phy_power_off(pcie->phy);
> > - phy_exit(pcie->phy);
> > - }
> > + phy_power_off(pcie->phy);
> > + phy_exit(pcie->phy);
> >
> > return 0;
> > }
> >
next prev parent reply other threads:[~2015-07-14 20:51 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <5307CAA2.8060406@users.sourceforge.net>
[not found] ` <alpine.DEB.2.02.1402212321410.2043@localhost6.localdomain6>
[not found] ` <530A086E.8010901@users.sourceforge.net>
[not found] ` <alpine.DEB.2.02.1402231635510.1985@localhost6.localdomain6>
[not found] ` <530A72AA.3000601@users.sourceforge.net>
[not found] ` <alpine.DEB.2.02.1402240658210.2090@localhost6.localdomain6>
[not found] ` <530B5FB6.6010207@users.sourceforge.net>
[not found] ` <alpine.DEB.2.10.1402241710370.2074@hadrien>
[not found] ` <530C5E18.1020800@users.sourceforge.net>
[not found] ` <alpine.DEB.2.10.1402251014170.2080@hadrien>
[not found] ` <530CD2C4.4050903@users.sourceforge.net>
[not found] ` <alpine.DEB.2.10.1402251840450.7035@hadrien>
[not found] ` <530CF8FF.8080600@users.sourceforge.net>
[not found] ` <alpine.DEB.2.02.1402252117150.2047@localhost6.localdomain6>
[not found] ` <530DD06F.4090703@users.sourceforge.net>
[not found] ` <alpine.DEB.2.02.1402262129250.2221@localhost6.localdomain6>
[not found] ` <5317A59D.4@users.sourceforge.net>
2014-11-02 15:12 ` [PATCH 1/1] PCI: Deletion of unnecessary checks before three function calls SF Markus Elfring
2014-11-11 4:07 ` Bjorn Helgaas
2014-11-20 16:47 ` [PATCH 1/1] PCI: hotplug: Deletion of an unnecessary check before the function call "pci_dev_put" SF Markus Elfring
2014-12-11 0:06 ` Bjorn Helgaas
2015-06-28 14:52 ` [PATCH] PCI-iproc: Delete unnecessary checks before two function calls SF Markus Elfring
2015-06-29 16:45 ` Ray Jui
2015-07-14 20:10 ` Bjorn Helgaas
2015-07-14 20:23 ` Ray Jui
2015-07-14 20:51 ` Bjorn Helgaas [this message]
2015-07-14 20:53 ` Ray Jui
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=20150714205128.GI24416@google.com \
--to=bhelgaas@google.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=elfring@users.sourceforge.net \
--cc=hauke@hauke-m.de \
--cc=julia.lawall@lip6.fr \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=rjui@broadcom.com \
--cc=sbranden@broadcom.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).