diff for duplicates of <58A6E05D.5010803@ti.com> diff --git a/a/1.txt b/N1/1.txt index d495e1d..3ee380c 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -1,10 +1,12 @@ Hi Joao, On Friday 17 February 2017 04:56 PM, Joao Pinto wrote: -> +> = + > Hi Kishon, -> -> Às 9:50 AM de 2/17/2017, Kishon Vijay Abraham I escreveu: +> = + +> =C0s 9:50 AM de 2/17/2017, Kishon Vijay Abraham I escreveu: >> Introduce a new EP core layer in order to support endpoint functions >> in linux kernel. This comprises of EPC library >> (Endpoint Controller Library) and EPF library (Endpoint @@ -18,7 +20,8 @@ On Friday 17 February 2017 04:56 PM, Joao Pinto wrote: >> drivers/pci/Kconfig | 1 + >> drivers/pci/endpoint/Kconfig | 21 ++ >> drivers/pci/endpoint/Makefile | 6 + ->> drivers/pci/endpoint/pci-epc-core.c | 548 +++++++++++++++++++++++++++++++++++ +>> drivers/pci/endpoint/pci-epc-core.c | 548 ++++++++++++++++++++++++++++= ++++++++ >> drivers/pci/endpoint/pci-epc-mem.c | 143 +++++++++ >> drivers/pci/endpoint/pci-epf-core.c | 347 ++++++++++++++++++++++ >> include/linux/mod_devicetable.h | 10 + @@ -37,24 +40,32 @@ On Friday 17 February 2017 04:56 PM, Joao Pinto wrote: >> index f521cb0..a300bb1 100644 >> --- a/drivers/Makefile >> +++ b/drivers/Makefile ->> @@ -14,7 +14,9 @@ obj-$(CONFIG_GENERIC_PHY) += phy/ ->> obj-$(CONFIG_PINCTRL) += pinctrl/ ->> obj-$(CONFIG_GPIOLIB) += gpio/ ->> obj-y += pwm/ +>> @@ -14,7 +14,9 @@ obj-$(CONFIG_GENERIC_PHY) +=3D phy/ +>> obj-$(CONFIG_PINCTRL) +=3D pinctrl/ +>> obj-$(CONFIG_GPIOLIB) +=3D gpio/ +>> obj-y +=3D pwm/ >> + ->> obj-$(CONFIG_PCI) += pci/ ->> +obj-$(CONFIG_PCI_ENDPOINT) += pci/endpoint/ +>> obj-$(CONFIG_PCI) +=3D pci/ +>> +obj-$(CONFIG_PCI_ENDPOINT) +=3D pci/endpoint/ >> # PCI dwc controller drivers ->> obj-y += pci/dwc/ -> +>> obj-y +=3D pci/dwc/ +> = + > Any special reason to include pci/endpoint and pci/dwc in drivers/Makefile -> instead of being inside pci/Makefile? pci/host is still inside pci/Makefile. +> instead of being inside pci/Makefile? pci/host is still inside pci/Makefi= +le. CONFIG_PCI enables all the pcie host support. Endpoint support should be enabled independent of the host support. Moving pci/endpoint inside -pci/Makefile will build endpoint support only if CONFIG_PCI is enabled. For the +pci/Makefile will build endpoint support only if CONFIG_PCI is enabled. For= + the same reason kept pci/dwc in drivers/Makefile since dwc drivers can be used either in host mode or device mode (or both). Thanks Kishon + +_______________________________________________ +linux-arm-kernel mailing list +linux-arm-kernel@lists.infradead.org +http://lists.infradead.org/mailman/listinfo/linux-arm-kernel diff --git a/a/content_digest b/N1/content_digest index 6a74dbf..bac900a 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -19,10 +19,12 @@ "Hi Joao,\n" "\n" "On Friday 17 February 2017 04:56 PM, Joao Pinto wrote:\n" - "> \n" + "> =\n" + "\n" "> Hi Kishon,\n" - "> \n" - "> \303\200s 9:50 AM de 2/17/2017, Kishon Vijay Abraham I escreveu:\n" + "> =\n" + "\n" + "> =C0s 9:50 AM de 2/17/2017, Kishon Vijay Abraham I escreveu:\n" ">> Introduce a new EP core layer in order to support endpoint functions\n" ">> in linux kernel. This comprises of EPC library\n" ">> (Endpoint Controller Library) and EPF library (Endpoint\n" @@ -36,7 +38,8 @@ ">> drivers/pci/Kconfig | 1 +\n" ">> drivers/pci/endpoint/Kconfig | 21 ++\n" ">> drivers/pci/endpoint/Makefile | 6 +\n" - ">> drivers/pci/endpoint/pci-epc-core.c | 548 +++++++++++++++++++++++++++++++++++\n" + ">> drivers/pci/endpoint/pci-epc-core.c | 548 ++++++++++++++++++++++++++++=\n" + "+++++++\n" ">> drivers/pci/endpoint/pci-epc-mem.c | 143 +++++++++\n" ">> drivers/pci/endpoint/pci-epf-core.c | 347 ++++++++++++++++++++++\n" ">> include/linux/mod_devicetable.h | 10 +\n" @@ -55,26 +58,34 @@ ">> index f521cb0..a300bb1 100644\n" ">> --- a/drivers/Makefile\n" ">> +++ b/drivers/Makefile\n" - ">> @@ -14,7 +14,9 @@ obj-$(CONFIG_GENERIC_PHY)\t+= phy/\n" - ">> obj-$(CONFIG_PINCTRL)\t\t+= pinctrl/\n" - ">> obj-$(CONFIG_GPIOLIB)\t\t+= gpio/\n" - ">> obj-y\t\t\t\t+= pwm/\n" + ">> @@ -14,7 +14,9 @@ obj-$(CONFIG_GENERIC_PHY)\t+=3D phy/\n" + ">> obj-$(CONFIG_PINCTRL)\t\t+=3D pinctrl/\n" + ">> obj-$(CONFIG_GPIOLIB)\t\t+=3D gpio/\n" + ">> obj-y\t\t\t\t+=3D pwm/\n" ">> +\n" - ">> obj-$(CONFIG_PCI)\t\t+= pci/\n" - ">> +obj-$(CONFIG_PCI_ENDPOINT)\t+= pci/endpoint/\n" + ">> obj-$(CONFIG_PCI)\t\t+=3D pci/\n" + ">> +obj-$(CONFIG_PCI_ENDPOINT)\t+=3D pci/endpoint/\n" ">> # PCI dwc controller drivers\n" - ">> obj-y\t\t\t\t+= pci/dwc/\n" - "> \n" + ">> obj-y\t\t\t\t+=3D pci/dwc/\n" + "> =\n" + "\n" "> Any special reason to include pci/endpoint and pci/dwc in drivers/Makefile\n" - "> instead of being inside pci/Makefile? pci/host is still inside pci/Makefile.\n" + "> instead of being inside pci/Makefile? pci/host is still inside pci/Makefi=\n" + "le.\n" "\n" "CONFIG_PCI enables all the pcie host support. Endpoint support should be\n" "enabled independent of the host support. Moving pci/endpoint inside\n" - "pci/Makefile will build endpoint support only if CONFIG_PCI is enabled. For the\n" + "pci/Makefile will build endpoint support only if CONFIG_PCI is enabled. For=\n" + " the\n" "same reason kept pci/dwc in drivers/Makefile since dwc drivers can be used\n" "either in host mode or device mode (or both).\n" "\n" "Thanks\n" - Kishon + "Kishon\n" + "\n" + "_______________________________________________\n" + "linux-arm-kernel mailing list\n" + "linux-arm-kernel@lists.infradead.org\n" + http://lists.infradead.org/mailman/listinfo/linux-arm-kernel -03e025c158bc50960c795287ebdae5dc1d4b8b43d4513277d9fe285014f5a37a +b4e3c98262e0a469e8ac25233ad4ce7ff399ff61ac8c5e799ea5f20f7fe6c6f5
diff --git a/a/1.txt b/N2/1.txt index d495e1d..8262ce8 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -4,7 +4,7 @@ On Friday 17 February 2017 04:56 PM, Joao Pinto wrote: > > Hi Kishon, > -> Às 9:50 AM de 2/17/2017, Kishon Vijay Abraham I escreveu: +> ?s 9:50 AM de 2/17/2017, Kishon Vijay Abraham I escreveu: >> Introduce a new EP core layer in order to support endpoint functions >> in linux kernel. This comprises of EPC library >> (Endpoint Controller Library) and EPF library (Endpoint diff --git a/a/content_digest b/N2/content_digest index 6a74dbf..d14edfa 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,19 +1,10 @@ "ref\01487325042-28227-1-git-send-email-kishon@ti.com\0" "ref\01487325042-28227-2-git-send-email-kishon@ti.com\0" "ref\0ece23395-7ebc-c9f3-bd9f-4f24e44d763a@synopsys.com\0" - "From\0Kishon Vijay Abraham I <kishon@ti.com>\0" - "Subject\0Re: [PATCH v2 01/22] PCI: endpoint: Add EP core layer to enable EP controller and EP functions\0" + "From\0kishon@ti.com (Kishon Vijay Abraham I)\0" + "Subject\0[PATCH v2 01/22] PCI: endpoint: Add EP core layer to enable EP controller and EP functions\0" "Date\0Fri, 17 Feb 2017 17:07:01 +0530\0" - "To\0Joao Pinto <Joao.Pinto@synopsys.com>" - Bjorn Helgaas <bhelgaas@google.com> - " Jingoo Han <jingoohan1@gmail.com>\0" - "Cc\0devicetree@vger.kernel.org" - linux-doc@vger.kernel.org - linux-pci@vger.kernel.org - nsekhar@ti.com - linux-kernel@vger.kernel.org - linux-omap@vger.kernel.org - " linux-arm-kernel@lists.infradead.org\0" + "To\0linux-arm-kernel@lists.infradead.org\0" "\00:1\0" "b\0" "Hi Joao,\n" @@ -22,7 +13,7 @@ "> \n" "> Hi Kishon,\n" "> \n" - "> \303\200s 9:50 AM de 2/17/2017, Kishon Vijay Abraham I escreveu:\n" + "> ?s 9:50 AM de 2/17/2017, Kishon Vijay Abraham I escreveu:\n" ">> Introduce a new EP core layer in order to support endpoint functions\n" ">> in linux kernel. This comprises of EPC library\n" ">> (Endpoint Controller Library) and EPF library (Endpoint\n" @@ -77,4 +68,4 @@ "Thanks\n" Kishon -03e025c158bc50960c795287ebdae5dc1d4b8b43d4513277d9fe285014f5a37a +740fc701889ab78d26decdfde24915d22df038d38d9ba73aea70ca575ed938aa
diff --git a/a/content_digest b/N3/content_digest index 6a74dbf..8bd7ffb 100644 --- a/a/content_digest +++ b/N3/content_digest @@ -7,13 +7,13 @@ "To\0Joao Pinto <Joao.Pinto@synopsys.com>" Bjorn Helgaas <bhelgaas@google.com> " Jingoo Han <jingoohan1@gmail.com>\0" - "Cc\0devicetree@vger.kernel.org" - linux-doc@vger.kernel.org - linux-pci@vger.kernel.org - nsekhar@ti.com - linux-kernel@vger.kernel.org - linux-omap@vger.kernel.org - " linux-arm-kernel@lists.infradead.org\0" + "Cc\0<linux-pci@vger.kernel.org>" + <linux-doc@vger.kernel.org> + <linux-kernel@vger.kernel.org> + <devicetree@vger.kernel.org> + <linux-omap@vger.kernel.org> + <linux-arm-kernel@lists.infradead.org> + " <nsekhar@ti.com>\0" "\00:1\0" "b\0" "Hi Joao,\n" @@ -77,4 +77,4 @@ "Thanks\n" Kishon -03e025c158bc50960c795287ebdae5dc1d4b8b43d4513277d9fe285014f5a37a +e6172b7c174b8e6897bb6bfaa2faf60a01385a8be5c6c470e16cdefb90180881
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.