All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pavel Machek <pavel@ucw.cz>
To: Russell King <rmk@arm.linux.org.uk>
Cc: kernel list <linux-kernel@vger.kernel.org>
Subject: Re: What happened to SUSPEND_SAVE_STATE?
Date: Thu, 11 Sep 2003 00:36:40 +0200	[thread overview]
Message-ID: <20030910223640.GD257@elf.ucw.cz> (raw)
In-Reply-To: <20030910232527.O30046@flint.arm.linux.org.uk>

Hi!

> > > What happened to SUSPEND_SAVE_STATE?
> > 
> > SUSPEND_NOTIFY seems dead, too. Should I simply ignore level parameter
> > in pcmcia_socket_dev_suspend?
> 
> No.  Apply this patch (it's cut down from the stuff which is pending
> for Linus - I hope I didn't make any mistakes doing that 8))

Thanks, but:

> diff -Nru a/drivers/pcmcia/i82365.c b/drivers/pcmcia/i82365.c
> --- a/drivers/pcmcia/i82365.c	Wed Sep 10 23:18:34 2003
> +++ b/drivers/pcmcia/i82365.c	Wed Sep 10 23:18:34 2003
> @@ -1351,11 +1351,27 @@
>  
>  /*====================================================================*/
>  
> +static int i82365_suspend(struct device *dev, u32 state, u32 level)
> +{
> +	int ret = 0;
> +	if (level == SUSPEND_SAVE_STATE)
> +		ret = pcmcia_socket_dev_suspend(dev, state);
> +	return ret;
> +}
> +
> +static int i82365_resume(struct device *dev, u32 level)
> +{
> +	int ret = 0;
> +	if (level == RESUME_RESTORE_STATE)
> +		ret = pcmcia_socket_dev_resume(dev);
> +	return ret;
> +}
> +
>  static struct device_driver i82365_driver = {
>  	.name = "i82365",
>  	.bus = &platform_bus_type,
> -	.suspend = pcmcia_socket_dev_suspend,
> -	.resume = pcmcia_socket_dev_resume,
> +	.suspend = i82365_suspend,
> +	.resume = i82365_resume,
>  };
>  
>  static struct platform_device i82365_device = {

I was not able to find *any* place in the tree that would call suspend
with SUSPEND_SAVE_STATE as level. Maybe just my grep was wrong?

								Pavel
-- 
When do you have a heart between your knees?
[Johanka's followup: and *two* hearts?]

  reply	other threads:[~2003-09-10 22:38 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-09-10 20:11 What happened to SUSPEND_SAVE_STATE? Pavel Machek
2003-09-10 20:49 ` Pavel Machek
2003-09-10 22:25   ` Russell King
2003-09-10 22:36     ` Pavel Machek [this message]
2003-09-10 22:41       ` Russell King
2003-09-10 23:06         ` Pavel Machek
2003-09-10 22:22 ` Russell King

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20030910223640.GD257@elf.ucw.cz \
    --to=pavel@ucw.cz \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rmk@arm.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.