linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: driver-core/pci merge failure
@ 2008-05-19  2:03 Stephen Rothwell
  2008-05-19 14:25 ` Rafael J. Wysocki
  0 siblings, 1 reply; 10+ messages in thread
From: Stephen Rothwell @ 2008-05-19  2:03 UTC (permalink / raw)
  To: Greg KH, Jesse Barnes; +Cc: linux-next, Shaohua Li, Rafael J. Wysocki

[-- Attachment #1: Type: text/plain, Size: 802 bytes --]

Hi Greg, Jesse,

Today's linux-next merge of the pci tree got a conflict in
drivers/pci/pci-driver.c between commit
681e027ef934e9892b199180129be772208f735b ("PM: New suspend and
hibernation callbacks for PCI bus type") from the driver-core tree and
commit 176bc7cff4442d3795c0599b70ecbe9b11ccd775 ("Suspend/Resume bug in
PCI layer wrt quirks") from the pci tree.  The former changed
pci_default_resume() to pci_default_pm_resume() while the latter added a
call to pci_fixup_device() immediately after the call to
pci_default_resume() in pci_device_resume() (which became
pci_legacy_resume() in the former patch).  I assume the obvious fixup is
correct, but may be worth a check.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-19  2:03 linux-next: driver-core/pci merge failure Stephen Rothwell
@ 2008-05-19 14:25 ` Rafael J. Wysocki
  2008-05-19 15:22   ` Greg KH
  0 siblings, 1 reply; 10+ messages in thread
From: Rafael J. Wysocki @ 2008-05-19 14:25 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: Greg KH, Jesse Barnes, linux-next, Shaohua Li

On Monday, 19 of May 2008, Stephen Rothwell wrote:
> Hi Greg, Jesse,
> 
> Today's linux-next merge of the pci tree got a conflict in
> drivers/pci/pci-driver.c between commit
> 681e027ef934e9892b199180129be772208f735b ("PM: New suspend and
> hibernation callbacks for PCI bus type") from the driver-core tree and
> commit 176bc7cff4442d3795c0599b70ecbe9b11ccd775 ("Suspend/Resume bug in
> PCI layer wrt quirks") from the pci tree.  The former changed
> pci_default_resume() to pci_default_pm_resume() while the latter added a
> call to pci_fixup_device() immediately after the call to
> pci_default_resume() in pci_device_resume() (which became
> pci_legacy_resume() in the former patch).  I assume the obvious fixup is
> correct, but may be worth a check.

Well, it's not really obvious. :-)

Please revert "PM: New suspend and hibernation callbacks for PCI bus type"
until we fix that up.

Thanks,
Rafael

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-19 14:25 ` Rafael J. Wysocki
@ 2008-05-19 15:22   ` Greg KH
  2008-05-19 22:39     ` Rafael J. Wysocki
  0 siblings, 1 reply; 10+ messages in thread
From: Greg KH @ 2008-05-19 15:22 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Stephen Rothwell, Jesse Barnes, linux-next, Shaohua Li

On Mon, May 19, 2008 at 04:25:02PM +0200, Rafael J. Wysocki wrote:
> On Monday, 19 of May 2008, Stephen Rothwell wrote:
> > Hi Greg, Jesse,
> > 
> > Today's linux-next merge of the pci tree got a conflict in
> > drivers/pci/pci-driver.c between commit
> > 681e027ef934e9892b199180129be772208f735b ("PM: New suspend and
> > hibernation callbacks for PCI bus type") from the driver-core tree and
> > commit 176bc7cff4442d3795c0599b70ecbe9b11ccd775 ("Suspend/Resume bug in
> > PCI layer wrt quirks") from the pci tree.  The former changed
> > pci_default_resume() to pci_default_pm_resume() while the latter added a
> > call to pci_fixup_device() immediately after the call to
> > pci_default_resume() in pci_device_resume() (which became
> > pci_legacy_resume() in the former patch).  I assume the obvious fixup is
> > correct, but may be worth a check.
> 
> Well, it's not really obvious. :-)
> 
> Please revert "PM: New suspend and hibernation callbacks for PCI bus type"
> until we fix that up.

Do you want me to drop this from my tree?

thanks,

greg k-h

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-19 15:22   ` Greg KH
@ 2008-05-19 22:39     ` Rafael J. Wysocki
  2008-05-20  5:31       ` Stephen Rothwell
  0 siblings, 1 reply; 10+ messages in thread
From: Rafael J. Wysocki @ 2008-05-19 22:39 UTC (permalink / raw)
  To: Greg KH; +Cc: Stephen Rothwell, Jesse Barnes, linux-next, Shaohua Li

On Monday, 19 of May 2008, Greg KH wrote:
> On Mon, May 19, 2008 at 04:25:02PM +0200, Rafael J. Wysocki wrote:
> > On Monday, 19 of May 2008, Stephen Rothwell wrote:
> > > Hi Greg, Jesse,
> > > 
> > > Today's linux-next merge of the pci tree got a conflict in
> > > drivers/pci/pci-driver.c between commit
> > > 681e027ef934e9892b199180129be772208f735b ("PM: New suspend and
> > > hibernation callbacks for PCI bus type") from the driver-core tree and
> > > commit 176bc7cff4442d3795c0599b70ecbe9b11ccd775 ("Suspend/Resume bug in
> > > PCI layer wrt quirks") from the pci tree.  The former changed
> > > pci_default_resume() to pci_default_pm_resume() while the latter added a
> > > call to pci_fixup_device() immediately after the call to
> > > pci_default_resume() in pci_device_resume() (which became
> > > pci_legacy_resume() in the former patch).  I assume the obvious fixup is
> > > correct, but may be worth a check.
> > 
> > Well, it's not really obvious. :-)
> > 
> > Please revert "PM: New suspend and hibernation callbacks for PCI bus type"
> > until we fix that up.
> 
> Do you want me to drop this from my tree?

Yes, please.  I'll send the updated patch to Jesse, if he doesn't object, as I
said in the other thread.

Thanks,
Rafael

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-19 22:39     ` Rafael J. Wysocki
@ 2008-05-20  5:31       ` Stephen Rothwell
  2008-05-20 21:08         ` Jesse Barnes
  0 siblings, 1 reply; 10+ messages in thread
From: Stephen Rothwell @ 2008-05-20  5:31 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Greg KH, Jesse Barnes, linux-next, Shaohua Li

[-- Attachment #1: Type: text/plain, Size: 795 bytes --]

Hi Rafael, Greg,

On Tue, 20 May 2008 00:39:59 +0200 "Rafael J. Wysocki" <rjw@sisk.pl> wrote:
>
> On Monday, 19 of May 2008, Greg KH wrote:
> > On Mon, May 19, 2008 at 04:25:02PM +0200, Rafael J. Wysocki wrote:
> > 
> > > Please revert "PM: New suspend and hibernation callbacks for PCI bus type"
> > > until we fix that up.
> > 
> > Do you want me to drop this from my tree?
> 
> Yes, please.  I'll send the updated patch to Jesse, if he doesn't object, as I
> said in the other thread.

I have reverted that patch in linux-next today.  Let me know when things
change.

(I reverted in the import of the quilt tree, so it appears in
quilt-import.log not merge.log.)

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-20  5:31       ` Stephen Rothwell
@ 2008-05-20 21:08         ` Jesse Barnes
  2008-05-20 23:31           ` Greg KH
  0 siblings, 1 reply; 10+ messages in thread
From: Jesse Barnes @ 2008-05-20 21:08 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: Rafael J. Wysocki, Greg KH, linux-next

On Monday, May 19, 2008 10:31 pm Stephen Rothwell wrote:
> Hi Rafael, Greg,
>
> On Tue, 20 May 2008 00:39:59 +0200 "Rafael J. Wysocki" <rjw@sisk.pl> wrote:
> > On Monday, 19 of May 2008, Greg KH wrote:
> > > On Mon, May 19, 2008 at 04:25:02PM +0200, Rafael J. Wysocki wrote:
> > > > Please revert "PM: New suspend and hibernation callbacks for PCI bus
> > > > type" until we fix that up.
> > >
> > > Do you want me to drop this from my tree?
> >
> > Yes, please.  I'll send the updated patch to Jesse, if he doesn't object,
> > as I said in the other thread.
>
> I have reverted that patch in linux-next today.  Let me know when things
> change.
>
> (I reverted in the import of the quilt tree, so it appears in
> quilt-import.log not merge.log.)

Ok, I pushed the PCI PM ops patch into my linux-next tree, along with a 
duplicate of the new PM ops patch (which is also in Greg's tree).  This would 
be slightly easier if Greg used git too, since then I could just cherry pick 
the commit...

Thanks,
Jesse

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-20 21:08         ` Jesse Barnes
@ 2008-05-20 23:31           ` Greg KH
  2008-05-20 23:40             ` Rafael J. Wysocki
  2008-05-20 23:53             ` Jesse Barnes
  0 siblings, 2 replies; 10+ messages in thread
From: Greg KH @ 2008-05-20 23:31 UTC (permalink / raw)
  To: Jesse Barnes; +Cc: Stephen Rothwell, Rafael J. Wysocki, linux-next

On Tue, May 20, 2008 at 02:08:44PM -0700, Jesse Barnes wrote:
> On Monday, May 19, 2008 10:31 pm Stephen Rothwell wrote:
> > Hi Rafael, Greg,
> >
> > On Tue, 20 May 2008 00:39:59 +0200 "Rafael J. Wysocki" <rjw@sisk.pl> wrote:
> > > On Monday, 19 of May 2008, Greg KH wrote:
> > > > On Mon, May 19, 2008 at 04:25:02PM +0200, Rafael J. Wysocki wrote:
> > > > > Please revert "PM: New suspend and hibernation callbacks for PCI bus
> > > > > type" until we fix that up.
> > > >
> > > > Do you want me to drop this from my tree?
> > >
> > > Yes, please.  I'll send the updated patch to Jesse, if he doesn't object,
> > > as I said in the other thread.
> >
> > I have reverted that patch in linux-next today.  Let me know when things
> > change.
> >
> > (I reverted in the import of the quilt tree, so it appears in
> > quilt-import.log not merge.log.)
> 
> Ok, I pushed the PCI PM ops patch into my linux-next tree, along with a 
> duplicate of the new PM ops patch (which is also in Greg's tree).  This would 
> be slightly easier if Greg used git too, since then I could just cherry pick 
> the commit...

It still would be a mess :)

As I no longer control the PCI tree, this just got more complex.  I have
no problem with you taking that patch in your tree, you can keep my
signed-off-by.

Rafael, I'll be dropping the following patches from my tree:
	driver-core/pm-introduce-new-top-level-suspend-and-hibernation-callbacks.patch
	driver-core/pm-new-suspend-and-hibernation-callbacks-for-platform-bus-type.patch
	driver-core/pm-new-suspend-and-hibernation-callbacks-for-pci-bus-type.patch

I'm guessing you want Jesse to also pick up the platform-bus one as
well, so that does not get lost.

Is that ok?

thanks,

greg k-h

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-20 23:31           ` Greg KH
@ 2008-05-20 23:40             ` Rafael J. Wysocki
  2008-05-20 23:53             ` Jesse Barnes
  1 sibling, 0 replies; 10+ messages in thread
From: Rafael J. Wysocki @ 2008-05-20 23:40 UTC (permalink / raw)
  To: Greg KH, Jesse Barnes; +Cc: Stephen Rothwell, linux-next

On Wednesday, 21 of May 2008, Greg KH wrote:
> On Tue, May 20, 2008 at 02:08:44PM -0700, Jesse Barnes wrote:
> > On Monday, May 19, 2008 10:31 pm Stephen Rothwell wrote:
> > > Hi Rafael, Greg,
> > >
> > > On Tue, 20 May 2008 00:39:59 +0200 "Rafael J. Wysocki" <rjw@sisk.pl> wrote:
> > > > On Monday, 19 of May 2008, Greg KH wrote:
> > > > > On Mon, May 19, 2008 at 04:25:02PM +0200, Rafael J. Wysocki wrote:
> > > > > > Please revert "PM: New suspend and hibernation callbacks for PCI bus
> > > > > > type" until we fix that up.
> > > > >
> > > > > Do you want me to drop this from my tree?
> > > >
> > > > Yes, please.  I'll send the updated patch to Jesse, if he doesn't object,
> > > > as I said in the other thread.
> > >
> > > I have reverted that patch in linux-next today.  Let me know when things
> > > change.
> > >
> > > (I reverted in the import of the quilt tree, so it appears in
> > > quilt-import.log not merge.log.)
> > 
> > Ok, I pushed the PCI PM ops patch into my linux-next tree, along with a 
> > duplicate of the new PM ops patch (which is also in Greg's tree).  This would 
> > be slightly easier if Greg used git too, since then I could just cherry pick 
> > the commit...
> 
> It still would be a mess :)
> 
> As I no longer control the PCI tree, this just got more complex.  I have
> no problem with you taking that patch in your tree, you can keep my
> signed-off-by.
> 
> Rafael, I'll be dropping the following patches from my tree:
> 	driver-core/pm-introduce-new-top-level-suspend-and-hibernation-callbacks.patch
> 	driver-core/pm-new-suspend-and-hibernation-callbacks-for-platform-bus-type.patch
> 	driver-core/pm-new-suspend-and-hibernation-callbacks-for-pci-bus-type.patch
> 
> I'm guessing you want Jesse to also pick up the platform-bus one as
> well, so that does not get lost.

Yes.  The patch is appended.

> Is that ok?

OK by me.

Thanks,
Rafael

---
From: Rafael J. Wysocki <rjw@sisk.pl>

Implement new suspend and hibernation callbacks for the platform bus
type.

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: Pavel Machek <pavel@ucw.cz>
Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>
---
 drivers/base/platform.c         |  296 ++++++++++++++++++++++++++++++++++++++--
 include/linux/platform_device.h |    1 
 2 files changed, 289 insertions(+), 8 deletions(-)

Index: linux-2.6/include/linux/platform_device.h
===================================================================
--- linux-2.6.orig/include/linux/platform_device.h
+++ linux-2.6/include/linux/platform_device.h
@@ -53,6 +53,7 @@ struct platform_driver {
 	int (*suspend_late)(struct platform_device *, pm_message_t state);
 	int (*resume_early)(struct platform_device *);
 	int (*resume)(struct platform_device *);
+	struct pm_ext_ops *pm;
 	struct device_driver driver;
 };
 
Index: linux-2.6/drivers/base/platform.c
===================================================================
--- linux-2.6.orig/drivers/base/platform.c
+++ linux-2.6/drivers/base/platform.c
@@ -453,6 +453,8 @@ int platform_driver_register(struct plat
 		drv->driver.suspend = platform_drv_suspend;
 	if (drv->resume)
 		drv->driver.resume = platform_drv_resume;
+	if (drv->pm)
+		drv->driver.pm = &drv->pm->base;
 	return driver_register(&drv->driver);
 }
 EXPORT_SYMBOL_GPL(platform_driver_register);
@@ -560,7 +562,9 @@ static int platform_match(struct device 
 	return (strncmp(pdev->name, drv->name, BUS_ID_SIZE) == 0);
 }
 
-static int platform_suspend(struct device *dev, pm_message_t mesg)
+#ifdef CONFIG_PM_SLEEP
+
+static int platform_legacy_suspend(struct device *dev, pm_message_t mesg)
 {
 	int ret = 0;
 
@@ -570,7 +574,7 @@ static int platform_suspend(struct devic
 	return ret;
 }
 
-static int platform_suspend_late(struct device *dev, pm_message_t mesg)
+static int platform_legacy_suspend_late(struct device *dev, pm_message_t mesg)
 {
 	struct platform_driver *drv = to_platform_driver(dev->driver);
 	struct platform_device *pdev;
@@ -583,7 +587,7 @@ static int platform_suspend_late(struct 
 	return ret;
 }
 
-static int platform_resume_early(struct device *dev)
+static int platform_legacy_resume_early(struct device *dev)
 {
 	struct platform_driver *drv = to_platform_driver(dev->driver);
 	struct platform_device *pdev;
@@ -596,7 +600,7 @@ static int platform_resume_early(struct 
 	return ret;
 }
 
-static int platform_resume(struct device *dev)
+static int platform_legacy_resume(struct device *dev)
 {
 	int ret = 0;
 
@@ -606,15 +610,291 @@ static int platform_resume(struct device
 	return ret;
 }
 
+static int platform_pm_prepare(struct device *dev)
+{
+	struct device_driver *drv = dev->driver;
+	int ret = 0;
+
+	if (drv && drv->pm && drv->pm->prepare)
+		ret = drv->pm->prepare(dev);
+
+	return ret;
+}
+
+static void platform_pm_complete(struct device *dev)
+{
+	struct device_driver *drv = dev->driver;
+
+	if (drv && drv->pm && drv->pm->complete)
+		drv->pm->complete(dev);
+}
+
+#ifdef CONFIG_SUSPEND
+
+static int platform_pm_suspend(struct device *dev)
+{
+	struct device_driver *drv = dev->driver;
+	int ret = 0;
+
+	if (drv && drv->pm) {
+		if (drv->pm->suspend)
+			ret = drv->pm->suspend(dev);
+	} else {
+		ret = platform_legacy_suspend(dev, PMSG_SUSPEND);
+	}
+
+	return ret;
+}
+
+static int platform_pm_suspend_noirq(struct device *dev)
+{
+	struct platform_driver *pdrv;
+	int ret = 0;
+
+	if (!dev->driver)
+		return 0;
+
+	pdrv = to_platform_driver(dev->driver);
+	if (pdrv->pm) {
+		if (pdrv->pm->suspend_noirq)
+			ret = pdrv->pm->suspend_noirq(dev);
+	} else {
+		ret = platform_legacy_suspend_late(dev, PMSG_SUSPEND);
+	}
+
+	return ret;
+}
+
+static int platform_pm_resume(struct device *dev)
+{
+	struct device_driver *drv = dev->driver;
+	int ret = 0;
+
+	if (drv && drv->pm) {
+		if (drv->pm->resume)
+			ret = drv->pm->resume(dev);
+	} else {
+		ret = platform_legacy_resume(dev);
+	}
+
+	return ret;
+}
+
+static int platform_pm_resume_noirq(struct device *dev)
+{
+	struct platform_driver *pdrv;
+	int ret = 0;
+
+	if (!dev->driver)
+		return 0;
+
+	pdrv = to_platform_driver(dev->driver);
+	if (pdrv->pm) {
+		if (pdrv->pm->resume_noirq)
+			ret = pdrv->pm->resume_noirq(dev);
+	} else {
+		ret = platform_legacy_resume_early(dev);
+	}
+
+	return ret;
+}
+
+#else /* !CONFIG_SUSPEND */
+
+#define platform_pm_suspend		NULL
+#define platform_pm_resume		NULL
+#define platform_pm_suspend_noirq	NULL
+#define platform_pm_resume_noirq	NULL
+
+#endif /* !CONFIG_SUSPEND */
+
+#ifdef CONFIG_HIBERNATION
+
+static int platform_pm_freeze(struct device *dev)
+{
+	struct device_driver *drv = dev->driver;
+	int ret = 0;
+
+	if (!drv)
+		return 0;
+
+	if (drv->pm) {
+		if (drv->pm->freeze)
+			ret = drv->pm->freeze(dev);
+	} else {
+		ret = platform_legacy_suspend(dev, PMSG_FREEZE);
+	}
+
+	return ret;
+}
+
+static int platform_pm_freeze_noirq(struct device *dev)
+{
+	struct platform_driver *pdrv;
+	int ret = 0;
+
+	if (!dev->driver)
+		return 0;
+
+	pdrv = to_platform_driver(dev->driver);
+	if (pdrv->pm) {
+		if (pdrv->pm->freeze_noirq)
+			ret = pdrv->pm->freeze_noirq(dev);
+	} else {
+		ret = platform_legacy_suspend_late(dev, PMSG_FREEZE);
+	}
+
+	return ret;
+}
+
+static int platform_pm_thaw(struct device *dev)
+{
+	struct device_driver *drv = dev->driver;
+	int ret = 0;
+
+	if (drv && drv->pm) {
+		if (drv->pm->thaw)
+			ret = drv->pm->thaw(dev);
+	} else {
+		ret = platform_legacy_resume(dev);
+	}
+
+	return ret;
+}
+
+static int platform_pm_thaw_noirq(struct device *dev)
+{
+	struct platform_driver *pdrv;
+	int ret = 0;
+
+	if (!dev->driver)
+		return 0;
+
+	pdrv = to_platform_driver(dev->driver);
+	if (pdrv->pm) {
+		if (pdrv->pm->thaw_noirq)
+			ret = pdrv->pm->thaw_noirq(dev);
+	} else {
+		ret = platform_legacy_resume_early(dev);
+	}
+
+	return ret;
+}
+
+static int platform_pm_poweroff(struct device *dev)
+{
+	struct device_driver *drv = dev->driver;
+	int ret = 0;
+
+	if (drv && drv->pm) {
+		if (drv->pm->poweroff)
+			ret = drv->pm->poweroff(dev);
+	} else {
+		ret = platform_legacy_suspend(dev, PMSG_HIBERNATE);
+	}
+
+	return ret;
+}
+
+static int platform_pm_poweroff_noirq(struct device *dev)
+{
+	struct platform_driver *pdrv;
+	int ret = 0;
+
+	if (!dev->driver)
+		return 0;
+
+	pdrv = to_platform_driver(dev->driver);
+	if (pdrv->pm) {
+		if (pdrv->pm->poweroff_noirq)
+			ret = pdrv->pm->poweroff_noirq(dev);
+	} else {
+		ret = platform_legacy_suspend_late(dev, PMSG_HIBERNATE);
+	}
+
+	return ret;
+}
+
+static int platform_pm_restore(struct device *dev)
+{
+	struct device_driver *drv = dev->driver;
+	int ret = 0;
+
+	if (drv && drv->pm) {
+		if (drv->pm->restore)
+			ret = drv->pm->restore(dev);
+	} else {
+		ret = platform_legacy_resume(dev);
+	}
+
+	return ret;
+}
+
+static int platform_pm_restore_noirq(struct device *dev)
+{
+	struct platform_driver *pdrv;
+	int ret = 0;
+
+	if (!dev->driver)
+		return 0;
+
+	pdrv = to_platform_driver(dev->driver);
+	if (pdrv->pm) {
+		if (pdrv->pm->restore_noirq)
+			ret = pdrv->pm->restore_noirq(dev);
+	} else {
+		ret = platform_legacy_resume_early(dev);
+	}
+
+	return ret;
+}
+
+#else /* !CONFIG_HIBERNATION */
+
+#define platform_pm_freeze		NULL
+#define platform_pm_thaw		NULL
+#define platform_pm_poweroff		NULL
+#define platform_pm_restore		NULL
+#define platform_pm_freeze_noirq	NULL
+#define platform_pm_thaw_noirq		NULL
+#define platform_pm_poweroff_noirq	NULL
+#define platform_pm_restore_noirq	NULL
+
+#endif /* !CONFIG_HIBERNATION */
+
+struct pm_ext_ops platform_pm_ops = {
+	.base = {
+		.prepare = platform_pm_prepare,
+		.complete = platform_pm_complete,
+		.suspend = platform_pm_suspend,
+		.resume = platform_pm_resume,
+		.freeze = platform_pm_freeze,
+		.thaw = platform_pm_thaw,
+		.poweroff = platform_pm_poweroff,
+		.restore = platform_pm_restore,
+	},
+	.suspend_noirq = platform_pm_suspend_noirq,
+	.resume_noirq = platform_pm_resume_noirq,
+	.freeze_noirq = platform_pm_freeze_noirq,
+	.thaw_noirq = platform_pm_thaw_noirq,
+	.poweroff_noirq = platform_pm_poweroff_noirq,
+	.restore_noirq = platform_pm_restore_noirq,
+};
+
+#define PLATFORM_PM_OPS_PTR	&platform_pm_ops
+
+#else /* !CONFIG_PM_SLEEP */
+
+#define PLATFORM_PM_OPS_PTR	NULL
+
+#endif /* !CONFIG_PM_SLEEP */
+
 struct bus_type platform_bus_type = {
 	.name		= "platform",
 	.dev_attrs	= platform_dev_attrs,
 	.match		= platform_match,
 	.uevent		= platform_uevent,
-	.suspend	= platform_suspend,
-	.suspend_late	= platform_suspend_late,
-	.resume_early	= platform_resume_early,
-	.resume		= platform_resume,
+	.pm		= PLATFORM_PM_OPS_PTR,
 };
 EXPORT_SYMBOL_GPL(platform_bus_type);
 

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-20 23:31           ` Greg KH
  2008-05-20 23:40             ` Rafael J. Wysocki
@ 2008-05-20 23:53             ` Jesse Barnes
  2008-05-21  0:25               ` Stephen Rothwell
  1 sibling, 1 reply; 10+ messages in thread
From: Jesse Barnes @ 2008-05-20 23:53 UTC (permalink / raw)
  To: Greg KH; +Cc: Stephen Rothwell, Rafael J. Wysocki, linux-next

On Tuesday, May 20, 2008 4:31 pm Greg KH wrote:
> On Tue, May 20, 2008 at 02:08:44PM -0700, Jesse Barnes wrote:
> > On Monday, May 19, 2008 10:31 pm Stephen Rothwell wrote:
> > > Hi Rafael, Greg,
> > >
> > > On Tue, 20 May 2008 00:39:59 +0200 "Rafael J. Wysocki" <rjw@sisk.pl> 
wrote:
> > > > On Monday, 19 of May 2008, Greg KH wrote:
> > > > > On Mon, May 19, 2008 at 04:25:02PM +0200, Rafael J. Wysocki wrote:
> > > > > > Please revert "PM: New suspend and hibernation callbacks for PCI
> > > > > > bus type" until we fix that up.
> > > > >
> > > > > Do you want me to drop this from my tree?
> > > >
> > > > Yes, please.  I'll send the updated patch to Jesse, if he doesn't
> > > > object, as I said in the other thread.
> > >
> > > I have reverted that patch in linux-next today.  Let me know when
> > > things change.
> > >
> > > (I reverted in the import of the quilt tree, so it appears in
> > > quilt-import.log not merge.log.)
> >
> > Ok, I pushed the PCI PM ops patch into my linux-next tree, along with a
> > duplicate of the new PM ops patch (which is also in Greg's tree).  This
> > would be slightly easier if Greg used git too, since then I could just
> > cherry pick the commit...
>
> It still would be a mess :)

Yeah, if the patches ended up getting replaced or rebased it could get ugly 
(but remember, Linus says "don't do that!" :).

> As I no longer control the PCI tree, this just got more complex.  I have
> no problem with you taking that patch in your tree, you can keep my
> signed-off-by.
>
> Rafael, I'll be dropping the following patches from my tree:
> 	driver-core/pm-introduce-new-top-level-suspend-and-hibernation-callbacks.p
>atch
> driver-core/pm-new-suspend-and-hibernation-callbacks-for-platform-bus-type.
>patch
> driver-core/pm-new-suspend-and-hibernation-callbacks-for-pci-bus-type.patch
>
> I'm guessing you want Jesse to also pick up the platform-bus one as
> well, so that does not get lost.
>
> Is that ok?

Sounds good, thanks Greg.

Jesse

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

* Re: linux-next: driver-core/pci merge failure
  2008-05-20 23:53             ` Jesse Barnes
@ 2008-05-21  0:25               ` Stephen Rothwell
  0 siblings, 0 replies; 10+ messages in thread
From: Stephen Rothwell @ 2008-05-21  0:25 UTC (permalink / raw)
  To: Jesse Barnes; +Cc: Greg KH, Rafael J. Wysocki, linux-next

[-- Attachment #1: Type: text/plain, Size: 903 bytes --]

Hi all,

On Tue, 20 May 2008 16:53:04 -0700 Jesse Barnes <jbarnes@virtuousgeek.org> wrote:
>
> On Tuesday, May 20, 2008 4:31 pm Greg KH wrote:
> 
> > Rafael, I'll be dropping the following patches from my tree:
> > 	driver-core/pm-introduce-new-top-level-suspend-and-hibernation-callbacks.p
> >atch
> > driver-core/pm-new-suspend-and-hibernation-callbacks-for-platform-bus-type.
> >patch
> > driver-core/pm-new-suspend-and-hibernation-callbacks-for-pci-bus-type.patch
> >
> > I'm guessing you want Jesse to also pick up the platform-bus one as
> > well, so that does not get lost.
> >
> > Is that ok?
> 
> Sounds good, thanks Greg.

OK, so since Jesse put those three patches into the pci tree, I will
revert them from driver-core before I merge it into linux-next today.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

end of thread, other threads:[~2008-05-21  0:25 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-19  2:03 linux-next: driver-core/pci merge failure Stephen Rothwell
2008-05-19 14:25 ` Rafael J. Wysocki
2008-05-19 15:22   ` Greg KH
2008-05-19 22:39     ` Rafael J. Wysocki
2008-05-20  5:31       ` Stephen Rothwell
2008-05-20 21:08         ` Jesse Barnes
2008-05-20 23:31           ` Greg KH
2008-05-20 23:40             ` Rafael J. Wysocki
2008-05-20 23:53             ` Jesse Barnes
2008-05-21  0:25               ` Stephen Rothwell

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).