24 Apr, 2019

2 commits

  • This function may be called from tracing code, since that code needs to
    read the timer and this often requires calling do_div(), which calls
    __div64_32(). If this function is instrumented it causes an infinite loop,
    since emitting a trace record requests the time, which in turn emits a
    trace record, etc.

    Update the prototype to prevent instrumentation code being added.

    Signed-off-by: Simon Glass

    Simon Glass
     
  • These functions still use uint32_t and uint64_t but checkpatch now
    requests that the kernel types be used instead. Update them as well as a
    few resulting checkpatch errors.

    Signed-off-by: Simon Glass

    Simon Glass
     

13 Apr, 2017

1 commit


26 Feb, 2016

1 commit


19 Jul, 2014

1 commit


22 Apr, 2010

1 commit

  • As discussed on the list, move "arch/ppc" to "arch/powerpc" to
    better match the Linux directory structure.

    Please note that this patch also changes the "ppc" target in
    MAKEALL to "powerpc" to match this new infrastructure. But "ppc"
    is kept as an alias for now, to not break compatibility with
    scripts using this name.

    Signed-off-by: Stefan Roese
    Acked-by: Wolfgang Denk
    Acked-by: Detlev Zundel
    Acked-by: Kim Phillips
    Cc: Peter Tyser
    Cc: Anatolij Gustschin

    Stefan Roese
     

13 Apr, 2010

1 commit

  • Now that the other architecture-specific lib directories have been
    moved out of the top-level directory there's not much reason to have the
    '_generic' suffix on the common lib directory.

    Signed-off-by: Peter Tyser

    Peter Tyser