git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbaa19d
)
video: fbdev: riva: delete double assignment
author
Julia Lawall
<Julia.Lawall@lip6.fr>
Sat, 23 Aug 2014 18:33:22 +0000
(20:33 +0200)
committer
Tomi Valkeinen
<tomi.valkeinen@ti.com>
Tue, 26 Aug 2014 12:53:34 +0000
(15:53 +0300)
Delete successive assignments to the same location.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
expression i;
@@
*i = ...;
i = ...;
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
No differences found