Re: [PATCH 00/16] i2c: drop class based instantiaion for selected drivers

2014-07-10 Thread Lothar Waßmann
it, > check " > + "'Documentation/i2c/instantiating-devices' for > alternatives.\n", > It's usually a bad idea to split kernel messages across source lines because it makes searching for the corresponding source line fo

Re: [PATCH] Fix for possible null pointer dereference in dma.c

2014-05-18 Thread Lothar Waßmann
quot;, __func__); > > - if (prtd->state & ST_RUNNING) { > + if(substream) > Missing space. Lothar Waßmann -- ___ Ka-Ro electronics GmbH | Pascalstraße 22 | D - 52076 Aachen Phone: +49 2408 1402-0 | Fax: +4

Re: [PATCH] clk: Correct handling of NULL clk in __clk_{get, put}

2014-01-07 Thread Lothar Waßmann
r); > */ > int __clk_get(struct clk *clk) > { > - if (clk && !try_module_get(clk->owner)) > - return 0; > + if (clk) { > + if (!try_module_get(clk->owner)) > + return 0; > This