lkml.org 
[lkml]   [2019]   [Sep]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[GIT PULL] core/headers change for v5.4
    Linus,

    Please pull the latest core-headers-for-linus git tree from:

    git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core-headers-for-linus

    # HEAD: e8e4eb0fbeda570b16464208aebf5caccfb6eb95 asm-generic/div64: Fix documentation of do_div() parameter

    Fix the parameter description <asm-generic/div64.h>.

    Thanks,

    Ingo

    ------------------>
    Jonathan Neuschäfer (1):
    asm-generic/div64: Fix documentation of do_div() parameter


    include/asm-generic/div64.h | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/include/asm-generic/div64.h b/include/asm-generic/div64.h
    index dc9726fdac8f..b2a9c74efa55 100644
    --- a/include/asm-generic/div64.h
    +++ b/include/asm-generic/div64.h
    @@ -28,12 +28,12 @@

    /**
    * do_div - returns 2 values: calculate remainder and update new dividend
    - * @n: pointer to uint64_t dividend (will be updated)
    + * @n: uint64_t dividend (will be updated)
    * @base: uint32_t divisor
    *
    * Summary:
    - * ``uint32_t remainder = *n % base;``
    - * ``*n = *n / base;``
    + * ``uint32_t remainder = n % base;``
    + * ``n = n / base;``
    *
    * Return: (uint32_t)remainder
    *
    \
     
     \ /
      Last update: 2019-09-16 13:11    [W:4.247 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site