net: stmmac: avoid using timespec
authorArnd Bergmann <arnd@arndb.de>
Wed, 30 Sep 2015 11:26:32 +0000 (13:26 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 5 Oct 2015 10:16:41 +0000 (03:16 -0700)
commit0a6241551d20e982dba8fc6c88b0a021456ea7b4
tree587b621090b707531012613f65248b43ed5c0008
parentbe7ccdc36ba4815ca71b0ac6df898237a912b3ac
net: stmmac: avoid using timespec

We want to deprecate the use of 'struct timespec' on 32-bit
architectures, as it is will overflow in 2038. The stmmac
driver uses it to read the current time, and can simply
be changed to use ktime_get_real_ts64() instead.

Because of hardware limitations, there is still an overflow
in year 2106, which we cannot really avoid, but this documents
the overflow.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Cc: Richard Cochran <richardcochran@gmail.com>
Acked-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c