Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 419076f5 authored by Eliezer Tamir's avatar Eliezer Tamir Committed by David S. Miller
Browse files

net: lls fix build with allnoconfig



correct placeholder declarations to prevent build breakage when
!CONFIG_NET_LL_RX_POLL

Signed-off-by: default avatarEliezer Tamir <eliezer.tamir@linux.intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 23a3647b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -163,12 +163,12 @@ static inline unsigned long ll_get_flag(void)
	return 0;
}

static inline u64 sk_ll_end_time(struct sock *sk)
static inline u64 ll_start_time(unsigned int flag)
{
	return 0;
}

static inline u64 ll_end_time(void)
static inline u64 ll_run_time(void)
{
	return 0;
}
@@ -191,7 +191,7 @@ static inline void sk_mark_ll(struct sock *sk, struct sk_buff *skb)
{
}

static inline bool can_poll_ll(u64 end_time)
static inline bool can_poll_ll(u64 start_time, u64 run_time)
{
	return false;
}