[RFC/PATCH 8/9] OMAP: PM CONSTRAINTS: implement the devices wake-up latency constraints

2011-06-24 Thread jean . pihet
From: Jean Pihet Implement the devices wake-up latency constraints using a PM QoS notification handler which applies the constraints to the underlying layer by calling the corresponding function at hwmod level. Note: the bus throughput function is implemented but currently is a no-op. A new PM Q

Re: [RFC/PATCH 8/9] OMAP: PM CONSTRAINTS: implement the devices wake-up latency constraints

2011-06-27 Thread Todd Poynor
On Fri, Jun 24, 2011 at 04:38:05PM +0200, jean.pi...@newoldbits.com wrote: ... > + /* Find the associated omap_device for dev */ > + od = container_of(pdev, struct omap_device, pdev); > + if (!od || (od->hwmods_cnt != 1)) { > + pr_err("%s: Error: No unique hwmod for device %

Re: [RFC/PATCH 8/9] OMAP: PM CONSTRAINTS: implement the devices wake-up latency constraints

2011-06-30 Thread Jean Pihet
On Mon, Jun 27, 2011 at 8:33 PM, Todd Poynor wrote: > On Fri, Jun 24, 2011 at 04:38:05PM +0200, jean.pi...@newoldbits.com wrote: > ... >> +     /* Find the associated omap_device for dev */ >> +     od = container_of(pdev, struct omap_device, pdev); >> +     if (!od || (od->hwmods_cnt != 1)) { >>