Votre devis alarme est disponible

2011-10-24 Thread Votre expert protection parzabaion
Si vous ne pouvez pas visualiser ce message, consulter notre version en ligne. Vous avez la possibilité de vous retirer de notre liste d'envoi de mails par l'intermediaire de ce raccourci Service

Re: [PATCH] spi/pl022: Enable clock in probe an use runtime_idle

2011-10-24 Thread Ulf Hansson
Linus Walleij wrote: On Fri, Oct 21, 2011 at 4:08 PM, Ulf Hansson ulf.hans...@stericsson.com wrote: Since we are always runtime resumed when leaving probe the clock must be enabled. To accomplish that we are able to be runtime suspended after probe in the case when no request is going to

[PATCH] OMAP: SPI: Fix the trying to free nonexistent resource error

2011-10-24 Thread Shubhrajyoti D
Currently there is a request_mem_region(r-start, .. followed by r-start += pdata-regs_offset; And then in remove r = platform_get_resource(pdev, IORESOURCE_MEM, 0); release_mem_region(r-start, resource_size(r)); Here the offset addition is not taken care. Fix the code for the same.

Re: [PATCH] spi/pl022: Enable clock in probe an use runtime_idle

2011-10-24 Thread Grant Likely
On Fri, Oct 21, 2011 at 04:08:44PM +0200, Ulf Hansson wrote: Since we are always runtime resumed when leaving probe the clock must be enabled. To accomplish that we are able to be runtime suspended after probe in the case when no request is going to be recieved, a runtime_idle function has

Re: [PATCH 43/49] spi: irq: Remove IRQF_DISABLED

2011-10-24 Thread Grant Likely
On Sat, Oct 22, 2011 at 05:56:55PM +0800, Yong Zhang wrote: Since commit [e58aa3d2: genirq: Run irq handlers with interrupts disabled], We run all interrupt handlers with interrupts disabled and we even check and yell when an interrupt handler returns with interrupts enabled (see commit

Re: [PATCH] OMAP: SPI: Fix the trying to free nonexistent resource error

2011-10-24 Thread Grant Likely
On Mon, Oct 24, 2011 at 03:54:24PM +0530, Shubhrajyoti D wrote: Currently there is a request_mem_region(r-start, .. followed by r-start += pdata-regs_offset; And then in remove r = platform_get_resource(pdev, IORESOURCE_MEM, 0); release_mem_region(r-start, resource_size(r)); Here

Re: [PATCH] spi/pl022: Enable clock in probe an use runtime_idle

2011-10-24 Thread Linus Walleij
2011/10/24 Russell King - ARM Linux li...@arm.linux.org.uk: On Mon, Oct 24, 2011 at 02:03:42PM +0200, Grant Likely wrote: On Fri, Oct 21, 2011 at 04:08:44PM +0200, Ulf Hansson wrote: Since we are always runtime resumed when leaving probe the clock must be enabled. To accomplish that we are