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

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

busy_poll: cleanup do-nothing placeholders



When renaming ll_poll to busy poll, I introduced a typo
in the name of the do-nothing placeholder for sk_busy_loop
and called it sk_busy_poll.
This broke compile when busy poll was not configured.
Cong Wang submitted a patch to fixed that.
This patch removes the now redundant, misspelled placeholder.

Signed-off-by: default avatarEliezer Tamir <eliezer.tamir@linux.intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 136d8f37
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -162,11 +162,6 @@ static inline bool sk_can_busy_loop(struct sock *sk)
	return false;
}

static inline bool sk_busy_poll(struct sock *sk, int nonblock)
{
	return false;
}

static inline void skb_mark_napi_id(struct sk_buff *skb,
				    struct napi_struct *napi)
{