public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <m.chehab@samsung.com>
To: Shuah Khan <shuah.kh@samsung.com>
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
	shuahkhan@gmail.com
Subject: Re: [RFC] [PATCH 4/6] media: em28xx-input - implement em28xx_ops: suspend/resume hooks
Date: Sat, 01 Mar 2014 10:48:35 -0300	[thread overview]
Message-ID: <20140301104835.631c65bb@samsung.com> (raw)
In-Reply-To: <5dc00d657718dfefedb35b055abd13997afd6979.1393027856.git.shuah.kh@samsung.com>

Em Fri, 21 Feb 2014 17:50:16 -0700
Shuah Khan <shuah.kh@samsung.com> escreveu:

> Implement em28xx_ops: suspend/resume hooks. em28xx usb driver will
> invoke em28xx_ops: suspend and resume hooks for all its extensions
> from its suspend() and resume() interfaces.
> 
> Signed-off-by: Shuah Khan <shuah.kh@samsung.com>
> ---
>  drivers/media/usb/em28xx/em28xx-input.c | 35 +++++++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
> 
> diff --git a/drivers/media/usb/em28xx/em28xx-input.c b/drivers/media/usb/em28xx/em28xx-input.c
> index 18f65d8..1227309 100644
> --- a/drivers/media/usb/em28xx/em28xx-input.c
> +++ b/drivers/media/usb/em28xx/em28xx-input.c
> @@ -827,11 +827,46 @@ static int em28xx_ir_fini(struct em28xx *dev)
>  	return 0;
>  }
>  
> +static int em28xx_ir_suspend(struct em28xx *dev)
> +{
> +	struct em28xx_IR *ir = dev->ir;
> +
> +	if (dev->is_audio_only)
> +		return 0;
> +
> +	em28xx_info("Suspending input extension");
> +	cancel_delayed_work_sync(&ir->work);
> +	cancel_delayed_work_sync(&dev->buttons_query_work);
> +	/* is canceling delayed work sufficient or does the rc event
> +	   kthread needs stopping? kthread is stopped in
> +	   ir_raw_event_unregister() */
> +	return 0;
> +}
> +
> +static int em28xx_ir_resume(struct em28xx *dev)
> +{
> +	struct em28xx_IR *ir = dev->ir;
> +
> +	if (dev->is_audio_only)
> +		return 0;
> +
> +	em28xx_info("Resuming input extension");
> +	/* if suspend calls ir_raw_event_unregister(), the should call
> +	   ir_raw_event_register() */
> +	schedule_delayed_work_sync(&ir->work);

This causes a compilation breakage:

drivers/media/usb/em28xx/em28xx-input.c: In function ‘em28xx_ir_resume’:
drivers/media/usb/em28xx/em28xx-input.c:856:2: error: implicit declaration of function ‘schedule_delayed_work_sync’ [-Werror=implicit-function-declaration]
  schedule_delayed_work_sync(&ir->work);


> +	if (dev->num_button_polling_addresses)
> +		schedule_delayed_work(&dev->buttons_query_work,
> +			       msecs_to_jiffies(dev->button_polling_interval));
> +	return 0;
> +}
> +
>  static struct em28xx_ops rc_ops = {
>  	.id   = EM28XX_RC,
>  	.name = "Em28xx Input Extension",
>  	.init = em28xx_ir_init,
>  	.fini = em28xx_ir_fini,
> +	.suspend = em28xx_ir_suspend,
> +	.resume = em28xx_ir_resume,
>  };
>  
>  static int __init em28xx_rc_register(void)


-- 

Cheers,
Mauro

  reply	other threads:[~2014-03-01 13:48 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-22  0:50 [RFC] [PATCH 0/6] media: em28xx - power management support em28xx Shuah Khan
2014-02-22  0:50 ` [RFC] [PATCH 1/6] media: em28xx - add suspend/resume to em28xx_ops Shuah Khan
2014-02-22  0:50 ` [RFC] [PATCH 2/6] media: em28xx-audio - implement em28xx_ops: suspend/resume hooks Shuah Khan
2014-02-22  0:50 ` [RFC] [PATCH 3/6] media: em28xx-dvb " Shuah Khan
2014-02-22  0:50 ` [RFC] [PATCH 4/6] media: em28xx-input " Shuah Khan
2014-03-01 13:48   ` Mauro Carvalho Chehab [this message]
2014-03-03  9:45     ` Mauro Carvalho Chehab
2014-02-22  0:50 ` [RFC] [PATCH 5/6] media: em28xx-video " Shuah Khan
2014-02-22  0:50 ` [RFC] [PATCH 6/6] media: em28xx - implement em28xx_usb_driver suspend, resume, reset_resume hooks Shuah Khan

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=20140301104835.631c65bb@samsung.com \
    --to=m.chehab@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=shuah.kh@samsung.com \
    --cc=shuahkhan@gmail.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox