net: lls fix build with allnoconfig
authorEliezer Tamir <eliezer.tamir@linux.intel.com>
Wed, 3 Jul 2013 03:41:24 +0000 (06:41 +0300)
committerDavid S. Miller <davem@davemloft.net>
Wed, 3 Jul 2013 06:50:47 +0000 (23:50 -0700)
correct placeholder declarations to prevent build breakage when
!CONFIG_NET_LL_RX_POLL

Signed-off-by: Eliezer Tamir <eliezer.tamir@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/ll_poll.h

index b76f004f18a92fcefbdbacffb0937c401d6758ca..0d620ba19bc50f9020b006ce28c59d1bdd977065 100644 (file)
@@ -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;
 }
This page took 0.044132 seconds and 5 git commands to generate.