04 Dec, 2011

1 commit

  • This patch converts the drivers in drivers/video/* to use the
    module_platform_driver() macro which makes the code smaller and a bit
    simpler.

    Cc: Ben Dooks
    Cc: Manuel Lauss
    Signed-off-by: Axel Lin
    Acked-by: Wan ZongShun
    Acked-by: Sascha Hauer
    Acked-by: Lennert Buytenhek
    Acked-by: Alexey Charkov
    Acked-by: Damian Hobson-Garcia
    Acked-by: Jingoo Han
    Signed-off-by: Florian Tobias Schandinat

    Axel Lin
     

10 Jun, 2011

1 commit


02 Jun, 2011

1 commit

  • Add a label for error-handling code in the case where only clk_get has
    succeeded. Rename the label failed to be consistent with the rest.

    A simplified version of the semantic match that finds the missing clk_put
    is as follows: (http://coccinelle.lip6.fr/)

    //
    @r exists@
    expression e1,e2;
    statement S;
    @@

    e1 = clk_get@p1(...);
    ... when != e1 = e2
    when != clk_put(e1)
    when any
    if (...) { ... when != clk_put(e1)
    when != if (...) { ... clk_put(e1) ... }
    * return@p3 ...;
    } else S
    //

    Signed-off-by: Julia Lawall
    Signed-off-by: Paul Mundt

    Julia Lawall
     

25 Jan, 2011

1 commit


09 Oct, 2010

1 commit


25 Sep, 2010

1 commit


30 Aug, 2010

1 commit


22 Mar, 2010

1 commit


01 Dec, 2009

1 commit


13 Jun, 2009

1 commit

  • This driver is originally written by Lennert, modified by Green to be
    feature complete, and ported by Jun Nie and Kevin Liu for pxa168/910
    processors.

    The patch adds support for the on-chip LCD display controller, it
    currently supports the base (graphics) layer only.

    Signed-off-by: Lennert Buytenhek
    Signed-off-by: Green Wan
    Cc: Peter Liao
    Signed-off-by: Jun Nie
    Signed-off-by: Kevin Liu
    Acked-by: Krzysztof Helt
    Signed-off-by: Eric Miao

    Lennert Buytenhek