public inbox for linux-next@vger.kernel.org 
 help / color / mirror / Atom feed
* New linux-next tree suspend-2.6
@ 2009-03-15 16:54 Rafael J. Wysocki
  2009-03-16  2:16 ` Stephen Rothwell
  0 siblings, 1 reply; 6+ messages in thread
From: Rafael J. Wysocki @ 2009-03-15 16:54 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: linux-next, Andrew Morton, Ingo Molnar, Jesse Barnes

Hi Stephen,

Here's a new tree for linux-next:

git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6.git linux-next

It is based on the Linus' current tree, but I can rebase it on top of anything
else if that helps.

Unfortunately, it has two merge conflict that I'm not sure how to resolve.

The first one is with the linux-next branch of pci-2.6 and it may be resolved
by applying the appended patch on top of pci-2.6/linux-next before
merging suspend-2.6/linux-next.

The second one is with the x86 tree (I think) in drivers/xen/manage.c, but this
one is trivial.

Thanks,
Rafael

---
Revert 'PCI PM: Consistently use variable name "error" for pm call return values'

This is needed to resolve a merge conflict between the linux-next
branch of the pci-2.6 tree and the linux-next branch of the
suspend-2.6 tree.
---
 drivers/pci/pci-driver.c |   20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

Index: linux-next/drivers/pci/pci-driver.c
===================================================================
--- linux-next.orig/drivers/pci/pci-driver.c
+++ linux-next/drivers/pci/pci-driver.c
@@ -351,17 +351,17 @@ static int pci_legacy_suspend(struct dev
 {
 	struct pci_dev * pci_dev = to_pci_dev(dev);
 	struct pci_driver * drv = pci_dev->driver;
-	int error = 0;
+	int i = 0;
 
 	if (drv && drv->suspend) {
 		pci_power_t prev = pci_dev->current_state;
 
 		pci_dev->state_saved = false;
 
-		error = drv->suspend(pci_dev, state);
-		suspend_report_result(drv->suspend, error);
-		if (error)
-			return error;
+		i = drv->suspend(pci_dev, state);
+		suspend_report_result(drv->suspend, i);
+		if (i)
+			return i;
 
 		if (pci_dev->state_saved)
 			goto Fixup;
@@ -384,20 +384,20 @@ static int pci_legacy_suspend(struct dev
  Fixup:
 	pci_fixup_device(pci_fixup_suspend, pci_dev);
 
-	return error;
+	return i;
 }
 
 static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
 {
 	struct pci_dev * pci_dev = to_pci_dev(dev);
 	struct pci_driver * drv = pci_dev->driver;
-	int error = 0;
+	int i = 0;
 
 	if (drv && drv->suspend_late) {
-		error = drv->suspend_late(pci_dev, state);
-		suspend_report_result(drv->suspend_late, error);
+		i = drv->suspend_late(pci_dev, state);
+		suspend_report_result(drv->suspend_late, i);
 	}
-	return error;
+	return i;
 }
 
 static int pci_legacy_resume_early(struct device *dev)

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-03-16 23:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-15 16:54 New linux-next tree suspend-2.6 Rafael J. Wysocki
2009-03-16  2:16 ` Stephen Rothwell
2009-03-16  9:05   ` Stephen Rothwell
2009-03-16 22:16     ` Rafael J. Wysocki
2009-03-16 23:10       ` Stephen Rothwell
2009-03-16 22:13   ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox