linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [0/3]power management for usbtouchscreens
@ 2010-07-15 13:56 Oliver Neukum
       [not found] ` <201007151556.27284.oneukum-l3A5Bk7waGM@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Oliver Neukum @ 2010-07-15 13:56 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input, linux-usb, Petr Štetiar

Hi,

this series implements power management in form of suspend/resume
and reset_resume() for USB touchscreens. For devices that can live without
constant communication runtime power management is also implemented.
Support for reset_resume() required splitting up device initialization in two
parts. Allocations are not repeated upon reset_resume(); initializing the
hardware is repeated.

Many thanks to Petr Štetiar for testing.

	Regards
		Oliver
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [0/3]power management for usbtouchscreens
       [not found] ` <201007151556.27284.oneukum-l3A5Bk7waGM@public.gmane.org>
@ 2010-07-15 16:24   ` Dmitry Torokhov
  2010-07-16  6:56     ` Oliver Neukum
  0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2010-07-15 16:24 UTC (permalink / raw)
  To: Oliver Neukum
  Cc: linux-input-u79uwXL29TY76Z2rM5mHXA,
	linux-usb-u79uwXL29TY76Z2rM5mHXA, Petr Štetiar

On Thu, Jul 15, 2010 at 03:56:27PM +0200, Oliver Neukum wrote:
> Hi,
> 
> this series implements power management in form of suspend/resume
> and reset_resume() for USB touchscreens. For devices that can live without
> constant communication runtime power management is also implemented.
> Support for reset_resume() required splitting up device initialization in two
> parts. Allocations are not repeated upon reset_resume(); initializing the
> hardware is repeated.
> 
> Many thanks to Petr Štetiar for testing.
> 

Will apply, thanks Oliver.

BTW, your editor adds a bit of whitespace garbage to the files, please
beat it into submission.

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [0/3]power management for usbtouchscreens
  2010-07-15 16:24   ` Dmitry Torokhov
@ 2010-07-16  6:56     ` Oliver Neukum
  2010-07-16  7:07       ` Dmitry Torokhov
  0 siblings, 1 reply; 4+ messages in thread
From: Oliver Neukum @ 2010-07-16  6:56 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input, linux-usb, Petr Štetiar

Am Donnerstag, 15. Juli 2010, 18:24:00 schrieb Dmitry Torokhov:
> On Thu, Jul 15, 2010 at 03:56:27PM +0200, Oliver Neukum wrote:
> > Hi,
> > 
> > this series implements power management in form of suspend/resume
> > and reset_resume() for USB touchscreens. For devices that can live without
> > constant communication runtime power management is also implemented.
> > Support for reset_resume() required splitting up device initialization in two
> > parts. Allocations are not repeated upon reset_resume(); initializing the
> > hardware is repeated.
> > 
> > Many thanks to Petr Štetiar for testing.
> > 
> 
> Will apply, thanks Oliver.
> 
> BTW, your editor adds a bit of whitespace garbage to the files, please
> beat it into submission.

That is not good. What did it do?

	Regards
		Oliver
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [0/3]power management for usbtouchscreens
  2010-07-16  6:56     ` Oliver Neukum
@ 2010-07-16  7:07       ` Dmitry Torokhov
  0 siblings, 0 replies; 4+ messages in thread
From: Dmitry Torokhov @ 2010-07-16  7:07 UTC (permalink / raw)
  To: Oliver Neukum; +Cc: linux-input, linux-usb, Petr Štetiar

On Fri, Jul 16, 2010 at 08:56:04AM +0200, Oliver Neukum wrote:
> Am Donnerstag, 15. Juli 2010, 18:24:00 schrieb Dmitry Torokhov:
> > On Thu, Jul 15, 2010 at 03:56:27PM +0200, Oliver Neukum wrote:
> > > Hi,
> > > 
> > > this series implements power management in form of suspend/resume
> > > and reset_resume() for USB touchscreens. For devices that can live without
> > > constant communication runtime power management is also implemented.
> > > Support for reset_resume() required splitting up device initialization in two
> > > parts. Allocations are not repeated upon reset_resume(); initializing the
> > > hardware is repeated.
> > > 
> > > Many thanks to Petr Štetiar for testing.
> > > 
> > 
> > Will apply, thanks Oliver.
> > 
> > BTW, your editor adds a bit of whitespace garbage to the files, please
> > beat it into submission.
> 
> That is not good. What did it do?
> 

Extra tabs on empty lines between variable declaration block and the
real code.

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2010-07-16  7:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-15 13:56 [0/3]power management for usbtouchscreens Oliver Neukum
     [not found] ` <201007151556.27284.oneukum-l3A5Bk7waGM@public.gmane.org>
2010-07-15 16:24   ` Dmitry Torokhov
2010-07-16  6:56     ` Oliver Neukum
2010-07-16  7:07       ` Dmitry Torokhov

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