diff options
author | Yuchung Cheng <ycheng@google.com> | 2016-12-03 14:46:22 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-12-03 19:05:40 -0500 |
commit | 2bb148785ed75435eb39529d74e63b5e602ccd61 (patch) | |
tree | c3319a1defbe5a97220b16d72d5f6af886726749 /arch/avr32 | |
parent | 363dc73acacbbcdae98acf5612303e9770e04b1d (diff) | |
download | linux-2bb148785ed75435eb39529d74e63b5e602ccd61.tar.bz2 |
tcp: fix the missing avr32 SOF_TIMESTAMPING_OPT_STATS
The commit of SOF_TIMESTAMPING_OPT_STATS didn't include the
new header for avr32, causing build to break. The patch fixes it.
Fixes: 1c885808e456 ("tcp: SOF_TIMESTAMPING_OPT_STATS option for SO_TIMESTAMPING")
Reported-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Yuchung Cheng <ycheng@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/include/uapi/asm/socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/avr32/include/uapi/asm/socket.h b/arch/avr32/include/uapi/asm/socket.h index 1fd147f09a38..5a650426f357 100644 --- a/arch/avr32/include/uapi/asm/socket.h +++ b/arch/avr32/include/uapi/asm/socket.h @@ -90,4 +90,6 @@ #define SO_CNX_ADVICE 53 +#define SCM_TIMESTAMPING_OPT_STATS 54 + #endif /* _UAPI__ASM_AVR32_SOCKET_H */ |