summaryrefslogtreecommitdiff
path: root/drivers/video/omap2/displays/panel-acx565akm.c
AgeCommit message (Collapse)AuthorFilesLines
2010-08-02V4L/DVB: drivers/video/omap2/displays: add missing mutex_unlockJulia Lawall1-1/+3
Add a mutex_unlock missing on the error paths. The use of the mutex is balanced elsewhere in the file. The semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression E1; @@ * mutex_lock(E1,...); <+... when != E1 if (...) { ... when != E1 * return ...; } ...+> * mutex_unlock(E1,...); // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Acked-by: Mike Isely <isely@pobox.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-05-18OMAP: DSS2: Add ACX565AKM Panel DriverRoger Quadros1-0/+819
This is the panel used on Nokia N900 Signed-off-by: Roger Quadros <roger.quadros@nokia.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>