net: ethernet: aquantia: return -ETIME in macro AQ_HW_WAIT_FOR
authorColin Ian King <colin.king@canonical.com>
Fri, 27 Jan 2017 15:06:46 +0000 (15:06 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 29 Jan 2017 23:24:00 +0000 (18:24 -0500)
The macro is returning ETIME which means various checks to see if
the returned err is less than zero never work. I believe a -ETIME
should be returned instead.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/aquantia/atlantic/aq_hw_utils.h

index 78fcc0c..03b72dd 100644 (file)
@@ -31,7 +31,7 @@ do { \
                udelay(_US_); \
        } \
        if (!AQ_HW_WAIT_FOR_i) {\
-               err = ETIME; \
+               err = -ETIME; \
        } \
 } while (0)