Re: [PATCH 01/16] crypto: omap-aes: don't treat NULL clk as an error

2011-01-12 Thread Tobias Karnat
Am Mittwoch, den 12.01.2011, 21:51 + schrieb Jamie Iles: > Doh! Good spot, thanks. I've checked the rest of the series and this > was the only patch with the duplicated include. It can happen, thanks. -Tobias > 8<--- > > >Fr

Re: [PATCH 01/16] crypto: omap-aes: don't treat NULL clk as an error

2011-01-12 Thread Jamie Iles
On Wed, Jan 12, 2011 at 08:38:55PM +0100, Tobias Karnat wrote: > You have included linux/err.h a second time. Doh! Good spot, thanks. I've checked the rest of the series and this was the only patch with the duplicated include. Jamie 8<--

Re: [PATCH 01/16] crypto: omap-aes: don't treat NULL clk as an error

2011-01-12 Thread Tobias Karnat
Hi, You have included linux/err.h a second time. -Tobias Am Dienstag, den 11.01.2011, 12:43 + schrieb Jamie Iles: > clk_get() returns a struct clk cookie to the driver and some platforms > may return NULL if they only support a single clock. clk_get() has only > failed if it returns a ERR_P

Re: [PATCH 01/16] crypto: omap-aes: don't treat NULL clk as an error

2011-01-12 Thread Dmitry Kasatkin
Hi, Indeed, thanks On 11/01/11 17:56, Aaro Koskinen wrote: > Hi, > > On Tue, 11 Jan 2011, Jamie Iles wrote: > >> clk_get() returns a struct clk cookie to the driver and some platforms >> may return NULL if they only support a single clock. clk_get() has only >> failed if it returns a ERR_PTR() e

Re: [PATCH 01/16] crypto: omap-aes: don't treat NULL clk as an error

2011-01-11 Thread Aaro Koskinen
Hi, On Tue, 11 Jan 2011, Jamie Iles wrote: clk_get() returns a struct clk cookie to the driver and some platforms may return NULL if they only support a single clock. clk_get() has only failed if it returns a ERR_PTR() encoded pointer. Cc: Dmitry Kasatkin Cc: linux-crypto@vger.kernel.org Sig

[PATCH 01/16] crypto: omap-aes: don't treat NULL clk as an error

2011-01-11 Thread Jamie Iles
clk_get() returns a struct clk cookie to the driver and some platforms may return NULL if they only support a single clock. clk_get() has only failed if it returns a ERR_PTR() encoded pointer. Cc: Dmitry Kasatkin Cc: linux-crypto@vger.kernel.org Signed-off-by: Jamie Iles --- drivers/crypto/oma