lkml.org 
[lkml]   [2018]   [Jun]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 2/4] zd1211rw: stop using deprecated get_seconds()
    Date
    The get_seconds() function is deprecated because of the y2038 overflow.
    In zd1211rw we don't even care about the absolute value, so this is
    not a problem, but it's equally trivial to change to the non-deprecated
    ktime_get_seconds().

    Signed-off-by: Arnd Bergmann <arnd@arndb.de>
    ---
    drivers/net/wireless/zydas/zd1211rw/zd_chip.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/net/wireless/zydas/zd1211rw/zd_chip.c b/drivers/net/wireless/zydas/zd1211rw/zd_chip.c
    index 07b94eda9604..dd6a86b899eb 100644
    --- a/drivers/net/wireless/zydas/zd1211rw/zd_chip.c
    +++ b/drivers/net/wireless/zydas/zd1211rw/zd_chip.c
    @@ -1341,7 +1341,7 @@ int zd_chip_control_leds(struct zd_chip *chip, enum led_status status)
    case ZD_LED_SCANNING:
    ioreqs[0].value = FW_LINK_OFF;
    ioreqs[1].value = v[1] & ~other_led;
    - if (get_seconds() % 3 == 0) {
    + if ((u32)ktime_get_seconds() % 3 == 0) {
    ioreqs[1].value &= ~chip->link_led;
    } else {
    ioreqs[1].value |= chip->link_led;
    --
    2.9.0
    \
     
     \ /
      Last update: 2018-06-18 17:13    [W:4.518 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site