All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <5524E248.9010509@free-electrons.com>

diff --git a/a/1.txt b/N1/1.txt
index 3533ab0..850e965 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -151,12 +151,12 @@ Gregory
 > @@ -558,11 +558,11 @@ int __init orion5x_pci_sys_setup(int nr, struct pci_sys_data *sys)
 >  struct pci_bus __init *orion5x_pci_sys_scan_bus(int nr, struct pci_sys_data *sys)
 >  {
->  	if (nr == 0)
+>  	if (nr = 0)
 > -		return pci_scan_root_bus(NULL, sys->busnr, &pcie_ops, sys,
 > +		return pci_scan_root_bus(NULL, -1, sys->busnr, &pcie_ops, sys,
 >  					 &sys->resources);
 >  
->  	if (nr == 1 && !orion5x_pci_disabled)
+>  	if (nr = 1 && !orion5x_pci_disabled)
 > -		return pci_scan_root_bus(NULL, sys->busnr, &pci_ops, sys,
 > +		return pci_scan_root_bus(NULL, -1, sys->busnr, &pci_ops, sys,
 >  					 &sys->resources);
@@ -203,7 +203,7 @@ Gregory
 > -				&resources);
 > +	bus = pci_scan_root_bus(NULL, controller->segment, busnum,
 > +			&pci_root_ops, controller, &resources);
->   	if (bus == NULL) {
+>   	if (bus = NULL) {
 >  		kfree(res);
 >  		kfree(controller);
 > diff --git a/arch/m68k/coldfire/pci.c b/arch/m68k/coldfire/pci.c
@@ -231,7 +231,7 @@ Gregory
 > -				hose->ops, hose, &resources);
 > +	bus = pci_scan_root_bus(hose->parent, hose->global_number,
 > +			hose->first_busno, hose->ops, hose, &resources);
->  	if (bus == NULL) {
+>  	if (bus = NULL) {
 >  		pr_err("Failed to create bus for PCI domain %04x\n",
 >  		       hose->global_number);
 > diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c
@@ -275,7 +275,7 @@ Gregory
 > -				  hose->ops, hose, &resources);
 > +	bus = pci_create_root_bus(hose->parent, hose->global_number,
 > +			hose->first_busno, hose->ops, hose, &resources);
->  	if (bus == NULL) {
+>  	if (bus = NULL) {
 >  		pr_err("Failed to create bus for PCI domain %04x\n",
 >  			hose->global_number);
 > diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c
@@ -453,8 +453,7 @@ Gregory
 > @@ -1563,7 +1563,7 @@ lba_driver_probe(struct parisc_device *dev)
 >  
 >  	dev->dev.platform_data = lba_dev;
->  	lba_bus = lba_dev->hba.hba_bus =
-> -		pci_create_root_bus(&dev->dev, lba_dev->hba.bus_num.start,
+>  	lba_bus = lba_dev->hba.hba_bus > -		pci_create_root_bus(&dev->dev, lba_dev->hba.bus_num.start,
 > +		pci_create_root_bus(&dev->dev, 0, lba_dev->hba.bus_num.start,
 >  				    cfg_ops, NULL, &resources);
 >  	if (!lba_bus) {
diff --git a/a/content_digest b/N1/content_digest
index 4432d47..e6511e5 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -2,7 +2,7 @@
  "ref\01428053164-28277-5-git-send-email-wangyijing@huawei.com\0"
  "From\0Gregory CLEMENT <gregory.clement@free-electrons.com>\0"
  "Subject\0Re: [PATCH v9 03/30] PCI: Save domain in pci_host_bridge\0"
- "Date\0Wed, 08 Apr 2015 10:09:44 +0200\0"
+ "Date\0Wed, 08 Apr 2015 08:09:44 +0000\0"
  "To\0Yijing Wang <wangyijing@huawei.com>\0"
  "Cc\0Bjorn Helgaas <bhelgaas@google.com>"
   linux-ia64@vger.kernel.org
@@ -15,7 +15,7 @@
   Arnd Bergmann <arnd@arndb.de>
   Marc Zyngier <marc.zyngier@arm.com>
   Rusty Russell <rusty@rustcorp.com.au>
-  linux-m68k@lists.linux-m68k.org
+  linux-m68k@vger.kernel.org
   Thomas Gleixner <tglx@linutronix.de>
   Yinghai Lu <yinghai@kernel.org>
   linux-arm-kernel@lists.infradead.org
@@ -181,12 +181,12 @@
  "> @@ -558,11 +558,11 @@ int __init orion5x_pci_sys_setup(int nr, struct pci_sys_data *sys)\n"
  ">  struct pci_bus __init *orion5x_pci_sys_scan_bus(int nr, struct pci_sys_data *sys)\n"
  ">  {\n"
- ">  \tif (nr == 0)\n"
+ ">  \tif (nr = 0)\n"
  "> -\t\treturn pci_scan_root_bus(NULL, sys->busnr, &pcie_ops, sys,\n"
  "> +\t\treturn pci_scan_root_bus(NULL, -1, sys->busnr, &pcie_ops, sys,\n"
  ">  \t\t\t\t\t &sys->resources);\n"
  ">  \n"
- ">  \tif (nr == 1 && !orion5x_pci_disabled)\n"
+ ">  \tif (nr = 1 && !orion5x_pci_disabled)\n"
  "> -\t\treturn pci_scan_root_bus(NULL, sys->busnr, &pci_ops, sys,\n"
  "> +\t\treturn pci_scan_root_bus(NULL, -1, sys->busnr, &pci_ops, sys,\n"
  ">  \t\t\t\t\t &sys->resources);\n"
@@ -233,7 +233,7 @@
  "> -\t\t\t\t&resources);\n"
  "> +\tbus = pci_scan_root_bus(NULL, controller->segment, busnum,\n"
  "> +\t\t\t&pci_root_ops, controller, &resources);\n"
- ">   \tif (bus == NULL) {\n"
+ ">   \tif (bus = NULL) {\n"
  ">  \t\tkfree(res);\n"
  ">  \t\tkfree(controller);\n"
  "> diff --git a/arch/m68k/coldfire/pci.c b/arch/m68k/coldfire/pci.c\n"
@@ -261,7 +261,7 @@
  "> -\t\t\t\those->ops, hose, &resources);\n"
  "> +\tbus = pci_scan_root_bus(hose->parent, hose->global_number,\n"
  "> +\t\t\those->first_busno, hose->ops, hose, &resources);\n"
- ">  \tif (bus == NULL) {\n"
+ ">  \tif (bus = NULL) {\n"
  ">  \t\tpr_err(\"Failed to create bus for PCI domain %04x\\n\",\n"
  ">  \t\t       hose->global_number);\n"
  "> diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c\n"
@@ -305,7 +305,7 @@
  "> -\t\t\t\t  hose->ops, hose, &resources);\n"
  "> +\tbus = pci_create_root_bus(hose->parent, hose->global_number,\n"
  "> +\t\t\those->first_busno, hose->ops, hose, &resources);\n"
- ">  \tif (bus == NULL) {\n"
+ ">  \tif (bus = NULL) {\n"
  ">  \t\tpr_err(\"Failed to create bus for PCI domain %04x\\n\",\n"
  ">  \t\t\those->global_number);\n"
  "> diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c\n"
@@ -483,8 +483,7 @@
  "> @@ -1563,7 +1563,7 @@ lba_driver_probe(struct parisc_device *dev)\n"
  ">  \n"
  ">  \tdev->dev.platform_data = lba_dev;\n"
- ">  \tlba_bus = lba_dev->hba.hba_bus =\n"
- "> -\t\tpci_create_root_bus(&dev->dev, lba_dev->hba.bus_num.start,\n"
+ ">  \tlba_bus = lba_dev->hba.hba_bus > -\t\tpci_create_root_bus(&dev->dev, lba_dev->hba.bus_num.start,\n"
  "> +\t\tpci_create_root_bus(&dev->dev, 0, lba_dev->hba.bus_num.start,\n"
  ">  \t\t\t\t    cfg_ops, NULL, &resources);\n"
  ">  \tif (!lba_bus) {\n"
@@ -703,4 +702,4 @@
  "development, consulting, training and support.\n"
  http://free-electrons.com
 
-aa49c3cbe9e46b9102a5a91178c20213c06a24eedc011c1e687b424b8938526b
+b6b48ea7c4ab19de0b982739ffec603799c7cf4c5b1abdf88620e802bdf2a24a

diff --git a/a/content_digest b/N2/content_digest
index 4432d47..864398f 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,31 +1,9 @@
  "ref\01428053164-28277-1-git-send-email-wangyijing@huawei.com\0"
  "ref\01428053164-28277-5-git-send-email-wangyijing@huawei.com\0"
- "From\0Gregory CLEMENT <gregory.clement@free-electrons.com>\0"
- "Subject\0Re: [PATCH v9 03/30] PCI: Save domain in pci_host_bridge\0"
+ "From\0gregory.clement@free-electrons.com (Gregory CLEMENT)\0"
+ "Subject\0[PATCH v9 03/30] PCI: Save domain in pci_host_bridge\0"
  "Date\0Wed, 08 Apr 2015 10:09:44 +0200\0"
- "To\0Yijing Wang <wangyijing@huawei.com>\0"
- "Cc\0Bjorn Helgaas <bhelgaas@google.com>"
-  linux-ia64@vger.kernel.org
-  linux-pci@vger.kernel.org
-  Guan Xuetao <gxt@mprc.pku.edu.cn>
-  Russell King <linux@arm.linux.org.uk>
-  x86@kernel.org
-  Geert Uytterhoeven <geert@linux-m68k.org>
-  Benjamin Herrenschmidt <benh@kernel.crashing.org>
-  Arnd Bergmann <arnd@arndb.de>
-  Marc Zyngier <marc.zyngier@arm.com>
-  Rusty Russell <rusty@rustcorp.com.au>
-  linux-m68k@lists.linux-m68k.org
-  Thomas Gleixner <tglx@linutronix.de>
-  Yinghai Lu <yinghai@kernel.org>
-  linux-arm-kernel@lists.infradead.org
-  dja@axtens.net
-  Liviu Dudau <liviu@dudau.co.uk>
-  Tony Luck <tony.luck@intel.com>
-  linux-kernel@vger.kernel.org
-  Jiang Liu <jiang.liu@linux.intel.com>
-  linux-alpha@vger.kernel.org
- " David S. Miller <davem@davemloft.net>\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "Hi Yijing,\n"
@@ -703,4 +681,4 @@
  "development, consulting, training and support.\n"
  http://free-electrons.com
 
-aa49c3cbe9e46b9102a5a91178c20213c06a24eedc011c1e687b424b8938526b
+9b43f093c905d9118283febad3057a46921c278c890e016a61dc6d262c68f3fe

diff --git a/a/content_digest b/N3/content_digest
index 4432d47..858a1a6 100644
--- a/a/content_digest
+++ b/N3/content_digest
@@ -15,7 +15,7 @@
   Arnd Bergmann <arnd@arndb.de>
   Marc Zyngier <marc.zyngier@arm.com>
   Rusty Russell <rusty@rustcorp.com.au>
-  linux-m68k@lists.linux-m68k.org
+  linux-m68k@vger.kernel.org
   Thomas Gleixner <tglx@linutronix.de>
   Yinghai Lu <yinghai@kernel.org>
   linux-arm-kernel@lists.infradead.org
@@ -703,4 +703,4 @@
  "development, consulting, training and support.\n"
  http://free-electrons.com
 
-aa49c3cbe9e46b9102a5a91178c20213c06a24eedc011c1e687b424b8938526b
+845c3ce426f376c448b89c762c4b8fd6a2f04b44c8d6eee64e2d7e710a3c958c

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.