From: Paul Gortmaker <paul.gortmaker@windriver.com>
To: Brian Norris <briannorris@chromium.org>
Cc: Bjorn Helgaas <helgaas@kernel.org>,
Shawn Lin <shawn.lin@rock-chips.com>,
Bjorn Helgaas <bhelgaas@google.com>,
Marc Zyngier <marc.zyngier@arm.com>, <linux-pci@vger.kernel.org>,
Arnd Bergmann <arnd@arndb.de>,
LKML <linux-kernel@vger.kernel.org>,
<linux-rockchip@lists.infradead.org>,
Heiko Stuebner <heiko@sntech.de>,
Doug Anderson <dianders@chromium.org>,
Wenrui Li <wenrui.li@rock-chips.com>,
Rob Herring <robh+dt@kernel.org>, <devicetree@vger.kernel.org>,
Guenter Roeck <linux@roeck-us.net>
Subject: Re: [PATCH v7 2/2] PCI: Rockchip: Add Rockchip PCIe controller support
Date: Wed, 27 Jul 2016 17:57:39 -0400 [thread overview]
Message-ID: <20160727215739.GV11410@windriver.com> (raw)
In-Reply-To: <20160727200443.GA30281@google.com>
[Re: [PATCH v7 2/2] PCI: Rockchip: Add Rockchip PCIe controller support] On 27/07/2016 (Wed 13:04) Brian Norris wrote:
> + Guenter
>
> Hi,
>
> On Wed, Jul 27, 2016 at 03:56:36PM -0400, Paul Gortmaker wrote:
> > On Wed, Jul 27, 2016 at 2:22 PM, Bjorn Helgaas <helgaas@kernel.org> wrote:
> > > On Mon, Jul 18, 2016 at 08:42:13AM +0800, Shawn Lin wrote:
> > >> This patch adds Rockchip PCIe controller support found
> > >> on RK3399 Soc platform.
> > >>
> > >> Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
> > >>
> > >> ---
> > >>
> > >> Changes in v7:
> > >> - make it as a build-in driver
> >
> > [...]
> >
>
> ...
>
> > [...]
> >
> > >> +static struct platform_driver rockchip_pcie_driver = {
> > >> + .driver = {
> > >> + .name = "rockchip-pcie",
> > >> + .of_match_table = rockchip_pcie_of_match,
> > >> + },
> > >> + .probe = rockchip_pcie_probe,
> > >> +
> > >> +};
> > >> +module_platform_driver(rockchip_pcie_driver);
> > >> +
> > >> +MODULE_AUTHOR("Rockchip Inc");
> > >> +MODULE_DESCRIPTION("Rockchip AXI PCIe driver");
> > >> +MODULE_LICENSE("GPL v2");
> > >
> > > Per your Kconfig, this driver cannot be a module, so remove these MODULE_*
> > > annotations. This is to follow Paul Gortmaker's recent "Make explicitly
> > > non-modular" work. Also change the include of <linux/module.h> to
> > > <linux/init.h>.
> >
> > Thanks! You beat me to it. I didn't see any EXPORT_SYMBOL so it doesn't
> > look like we need export.h added here. Also, at the risk of stating
> > the obvious,
> > the module_platform_driver becomes builtin_platform_driver.
>
> Just for reference (not to necessarily disagree here): we've kinda
> ping-ponged on this one. I suggested it could be built as a module, so
> Shawn added it, but apparently we're missing an export:
>
> https://lkml.org/lkml/2016/7/8/704
>
> so he reverted back. It's probably best to just leave this built-in and
> resolve the comments Paul and Bjorn made, to avoid too much more
> flip-flopping. If we still want to patch up the __weak
> pci_remap_iospace(), then we can make this a module at a later time.
Agreed, and this was the general consensus we came to for other PCI code
as well. It might be different if we were deleting hundreds of lines
of code, but we are just making a few simple changes to make it clear
that things aren't modular, and that ensures others don't continue to
copy the same inconsistency into their new driver(s). It doesn't in any
way prevent a future conversion to tristate if that use case makes sense.
THanks,
Paul.
--
>
> Regards,
> Brian
next prev parent reply other threads:[~2016-07-27 21:57 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-18 0:42 [PATCH v7 1/2] Documentation: bindings: add dt doc for Rockchip PCIe controller Shawn Lin
2016-07-18 0:42 ` [PATCH v7 2/2] PCI: Rockchip: Add Rockchip PCIe controller support Shawn Lin
2016-07-22 22:29 ` Brian Norris
2016-07-27 18:22 ` Bjorn Helgaas
2016-07-27 19:56 ` Paul Gortmaker
2016-07-27 20:04 ` Brian Norris
2016-07-27 21:57 ` Paul Gortmaker [this message]
2016-07-22 20:39 ` [PATCH v7 1/2] Documentation: bindings: add dt doc for Rockchip PCIe controller Brian Norris
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=20160727215739.GV11410@windriver.com \
--to=paul.gortmaker@windriver.com \
--cc=arnd@arndb.de \
--cc=bhelgaas@google.com \
--cc=briannorris@chromium.org \
--cc=devicetree@vger.kernel.org \
--cc=dianders@chromium.org \
--cc=heiko@sntech.de \
--cc=helgaas@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux@roeck-us.net \
--cc=marc.zyngier@arm.com \
--cc=robh+dt@kernel.org \
--cc=shawn.lin@rock-chips.com \
--cc=wenrui.li@rock-chips.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).