04 Oct, 2017

1 commit

  • U-Boot widely uses error() as a bit noisier variant of printf().

    This macro causes name conflict with the following line in
    include/linux/compiler-gcc.h:

    # define __compiletime_error(message) __attribute__((error(message)))

    This prevents us from using __compiletime_error(), and makes it
    difficult to fully sync BUILD_BUG macros with Linux. (Notice
    Linux's BUILD_BUG_ON_MSG is implemented by using compiletime_assert().)

    Let's convert error() into now treewide-available pr_err().

    Done with the help of Coccinelle, excluing tools/ directory.

    The semantic patch I used is as follows:

    //
    @@@@
    -error
    +pr_err
    (...)
    //

    Signed-off-by: Masahiro Yamada
    Reviewed-by: Simon Glass
    [trini: Re-run Coccinelle]
    Signed-off-by: Tom Rini

    Masahiro Yamada
     

01 Aug, 2017

1 commit


06 Jun, 2017

2 commits


18 Apr, 2017

1 commit


06 Dec, 2016

1 commit


01 Oct, 2016

1 commit


29 Sep, 2016

1 commit

  • Apply the erratum A006261 for the following Socs:
    P2041 rev 2.0, P2040 rev 2.0, P5040 rev 2.0, 2.1

    Do not apply erratum A006261 for the following Socs:
    T4160, T4080, T1040, T1042, T1020, T1022, T2080, T2081

    Erratum A006261 is applicable for the following Socs:
    P1010(1.0, 2.0), P2041(1.0, 1.1, 2.0, 2.1), P2040(1.0, 1.1, 2.0, 2.1),
    P3041(1.0, 1.1, 2.0, 2.1), P5010(1.0, 2.0), P5020(1.0, 2.0),
    P5021(1.0, 2.0), T4240(1.0, 2.0), P5040(1.0,2.0,2.1).

    Signed-off-by: Sriram Dash
    Signed-off-by: Rajesh Bhagat
    Reviewed-by: York Sun

    Sriram Dash
     

28 Sep, 2016

3 commits


29 Jun, 2016

1 commit


13 Jun, 2016

3 commits


17 May, 2016

1 commit


10 Apr, 2016

4 commits