06 Jan, 2012

1 commit


07 Jun, 2010

1 commit

  • At the point of the call to dev_err, wm8350 is NULL.

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

    //
    @r exists@
    expression E,E1;
    identifier f;
    statement S1,S2,S3;
    @@

    if ((E == NULL && ...) || ...)
    {
    ... when != if (...) S1 else S2
    when != E = E1
    * E->f
    ... when any
    return ...;
    }
    else S3
    //

    Signed-off-by: Julia Lawall
    Acked-by: Mark Brown
    Signed-off-by: Wim Van Sebroeck

    Julia Lawall
     

07 Mar, 2010

1 commit


13 Jan, 2009

1 commit


01 Jan, 2009

1 commit

  • This driver implements support for the watchdog functionality provided
    by the Wolfson Microelectronics WM8350, a multi-function audio and
    power management subsystem intended for use in embedded systems. It is
    based on a driver originally written by Graeme Gregory, though it has
    been extensively modified since then.

    Use of a GPIO to kick the watchdog is not yet supported.

    Signed-off-by: Mark Brown
    Signed-off-by: Wim Van Sebroeck
    Signed-off-by: Andrew Morton

    Mark Brown