File tree Expand file tree Collapse file tree 2 files changed +11
-16
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 2 files changed +11
-16
lines changed Original file line number Diff line number Diff line change @@ -2069,6 +2069,8 @@ SOF_TIMESTAMPING_SOFTWARE
2069
2069
SOF_TIMESTAMPING_SYS_HARDWARE
2070
2070
SOF_TIMESTAMPING_TX_HARDWARE
2071
2071
SOF_TIMESTAMPING_TX_SOFTWARE
2072
+ SOF_TXTIME_DEADLINE_MODE
2073
+ SOF_TXTIME_REPORT_ERRORS
2072
2074
SOL_AAL
2073
2075
SOL_ALG
2074
2076
SOL_ATM
@@ -3063,6 +3065,7 @@ sigwaitinfo
3063
3065
sock_extended_err
3064
3066
sock_filter
3065
3067
sock_fprog
3068
+ sock_txtime
3066
3069
sockaddr_alg
3067
3070
sockaddr_can
3068
3071
sockaddr_ll
Original file line number Diff line number Diff line change @@ -685,16 +685,12 @@ s_no_extra_traits! {
685
685
}
686
686
}
687
687
688
- cfg_if ! {
689
- if #[ cfg( not( all( target_env = "musl" , target_arch = "mips" ) ) ) ] {
690
- s_no_extra_traits! {
691
- // linux/net_tstamp.h
692
- #[ allow( missing_debug_implementations) ]
693
- pub struct sock_txtime {
694
- pub clockid: :: clockid_t,
695
- pub flags: :: __u32,
696
- }
697
- }
688
+ s_no_extra_traits ! {
689
+ // linux/net_tstamp.h
690
+ #[ allow( missing_debug_implementations) ]
691
+ pub struct sock_txtime {
692
+ pub clockid: :: clockid_t,
693
+ pub flags: :: __u32,
698
694
}
699
695
}
700
696
@@ -2663,12 +2659,8 @@ pub const SOF_TIMESTAMPING_RX_SOFTWARE: ::c_uint = 1 << 3;
2663
2659
pub const SOF_TIMESTAMPING_SOFTWARE : :: c_uint = 1 << 4 ;
2664
2660
pub const SOF_TIMESTAMPING_SYS_HARDWARE : :: c_uint = 1 << 5 ;
2665
2661
pub const SOF_TIMESTAMPING_RAW_HARDWARE : :: c_uint = 1 << 6 ;
2666
- cfg_if ! {
2667
- if #[ cfg( not( all( target_env = "musl" , target_arch = "mips" ) ) ) ] {
2668
- pub const SOF_TXTIME_DEADLINE_MODE : u32 = 1 << 0 ;
2669
- pub const SOF_TXTIME_REPORT_ERRORS : u32 = 1 << 1 ;
2670
- }
2671
- }
2662
+ pub const SOF_TXTIME_DEADLINE_MODE : u32 = 1 << 0 ;
2663
+ pub const SOF_TXTIME_REPORT_ERRORS : u32 = 1 << 1 ;
2672
2664
2673
2665
// linux/if_alg.h
2674
2666
pub const ALG_SET_KEY : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments