07 Feb, 2019

1 commit

  • In arch/sandbox/include/asm/types.h we have
    Therefore for 32 bit Sandbox build BITS_PER_LONG turns out to be 32 as
    CONFIG_PHYS64 is not set

    This messes up the current logic of GENMASK macro due to mismatch b/w
    size of unsigned long (64 bit) and that of BITS_PER_LONG.
    Fix this by using CONFIG_SANDBOX_BITS_PER_LONG which is set to 64/32
    based on the host machine on which its being compiled.

    Without this patch:
    GENMASK(14,0) => 0x7fffffffffff
    After this patch:
    GENMASK(14,0) => 0x7fff

    Signed-off-by: Vignesh R
    Reviewed-by: Simon Glass

    Vignesh R
     

28 Nov, 2017

1 commit


29 Mar, 2017

1 commit


05 Nov, 2015

1 commit


21 Oct, 2015

2 commits


12 Sep, 2015

1 commit


18 Sep, 2009

1 commit

  • Commits

    02f99901ed1c9d828e3ea117f94ce2264bf8389e
    52d61227b66d4099b39c8309ab37cb67ee09a405

    introduced a regression where platform-specific ffs/fls implementations
    were defined away. This patch corrects that by using PLATFORM_xxx
    instead of the name itself.

    Signed-off-by: Simon Kagstrom
    Acked-by: Kumar Gala
    Acked-by: Stefan Roese

    Simon Kagstrom
     

16 Sep, 2009

2 commits


28 Jun, 2003

1 commit

  • - remove trailing white space, trailing empty lines, C++ comments, etc.
    - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)

    * Patches by Kenneth Johansson, 25 Jun 2003:
    - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)

    wdenk
     

21 Aug, 2000

1 commit