11 Mar, 2014

1 commit


14 May, 2012

1 commit


14 May, 2010

1 commit

  • Use kzalloc rather than the combination of kmalloc and memset.

    The semantic patch that makes this change is as follows:
    (http://coccinelle.lip6.fr/)

    //
    @@
    expression x,size,flags;
    statement S;
    @@

    -x = kmalloc(size,flags);
    +x = kzalloc(size,flags);
    if (x == NULL) S
    -memset(x, 0, size);
    //

    Signed-off-by: Julia Lawall
    Signed-off-by: David Woodhouse

    Julia Lawall
     

05 Jan, 2009

1 commit

  • LPDDR flash chips are based on completely new kind of chips probing.
    Device capabilities are available via special request.
    We sent field request command which contains Major and Minor numbers - and
    recieve corresponend value.
    All requests are performed within PFOW window.
    Detailed information about qinfo records can be found here:
    http://www.numonyx.com/Documents/Datasheets/DS-315768_Velocity-Discrete.pdf

    Signed-off-by: Alexey Korolev
    Acked-by: Jared Hulbert
    Signed-off-by: David Woodhouse

    Alexey Korolev