From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Return-Path: Message-ID: <1495423665.21021.6.camel@mtkswgap22> Subject: Re: [PATCH v3 1/2] PCI: mediatek: Add Mediatek PCIe host controller support From: Ryder Lee To: Paul Gortmaker Date: Mon, 22 May 2017 11:27:45 +0800 In-Reply-To: References: <1494382020-26790-1-git-send-email-ryder.lee@mediatek.com> <1494382020-26790-2-git-send-email-ryder.lee@mediatek.com> MIME-Version: 1.0 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, Red Hung , Arnd Bergmann , linux-pci@vger.kernel.org, LKML , Rob Herring , linux-mediatek@lists.infradead.org, Bjorn Helgaas , "linux-arm-kernel@lists.infradead.org" Content-Type: text/plain; charset="us-ascii" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+bjorn=helgaas.com@lists.infradead.org List-ID: On Sat, 2017-05-20 at 15:46 -0400, Paul Gortmaker wrote: > On Tue, May 9, 2017 at 10:06 PM, Ryder Lee wrote: > > Add support for the Mediatek PCIe Gen2 controller which can > > be found on MT7623 series SoCs. > > > > Signed-off-by: Ryder Lee > > --- > > drivers/pci/host/Kconfig | 11 + > > drivers/pci/host/Makefile | 1 + > > drivers/pci/host/pcie-mediatek.c | 563 +++++++++++++++++++++++++++++++++++++++ > > 3 files changed, 575 insertions(+) > > create mode 100644 drivers/pci/host/pcie-mediatek.c > > > > diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig > > index f7c1d4d..aef0de9 100644 > > --- a/drivers/pci/host/Kconfig > > +++ b/drivers/pci/host/Kconfig > > @@ -174,6 +174,17 @@ config PCIE_ROCKCHIP > > There is 1 internal PCIe port available to support GEN2 with > > 4 slots. > > > > +config PCIE_MEDIATEK > > + bool "Mediatek PCIe controller" > > You've got bool here and correctly use the builtin register > function, but you still have a couple stray references to > the module.h header and MODULE macros. Can you > please also clean them up and resend with those gone? > > Thanks, > Paul. > -- > > +#include > > +#include > > [....] > > > +}; > > +MODULE_DEVICE_TABLE(of, mtk_pcie_ids); > > + > > +static struct platform_driver mtk_pcie_driver = { > > + .probe = mtk_pcie_probe, > > + .driver = { > > + .name = "mtk-pcie", > > + .of_match_table = mtk_pcie_ids, > > + .suppress_bind_attrs = true, > > + }, > > +}; > > + > > +builtin_platform_driver(mtk_pcie_driver); > > + > > +MODULE_DESCRIPTION("Mediatek PCIe host controller driver."); > > +MODULE_LICENSE("GPL v2"); I've already removed them at patch v5. Thanks a lot, Paul! _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel