23 Aug, 2012
1 commit
-
Using kfree to free data allocated with devm_kzalloc causes double frees.
The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)//
@@
expression x;
@@x = devm_kzalloc(...)
...
?-kfree(x);
//Signed-off-by: Julia Lawall
Signed-off-by: Florian Tobias Schandinat
30 Apr, 2012
1 commit
-
The AUO-K190X controllers share a very similar set of commands and
can therefore also share most of the driver code.Signed-off-by: Heiko Stübner
Signed-off-by: Florian Tobias Schandinat