7483cba4b5d4d7faa419bf6f3cd80d7b1c6afe7a
[firefly-linux-kernel-4.4.55.git] / net / batman-adv / network-coding.h
1 /* Copyright (C) 2012-2013 B.A.T.M.A.N. contributors:
2  *
3  * Martin Hundebøll, Jeppe Ledet-Pedersen
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public
7  * License as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA
18  */
19
20 #ifndef _NET_BATMAN_ADV_NETWORK_CODING_H_
21 #define _NET_BATMAN_ADV_NETWORK_CODING_H_
22
23 #ifdef CONFIG_BATMAN_ADV_NC
24
25 int batadv_nc_init(struct batadv_priv *bat_priv);
26 void batadv_nc_free(struct batadv_priv *bat_priv);
27 void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv);
28
29 #else /* ifdef CONFIG_BATMAN_ADV_NC */
30
31 static inline int batadv_nc_init(struct batadv_priv *bat_priv)
32 {
33         return 0;
34 }
35
36 static inline void batadv_nc_free(struct batadv_priv *bat_priv)
37 {
38         return;
39 }
40
41 static inline void batadv_nc_init_bat_priv(struct batadv_priv *bat_priv)
42 {
43         return;
44 }
45
46 #endif /* ifdef CONFIG_BATMAN_ADV_NC */
47
48 #endif /* _NET_BATMAN_ADV_NETWORK_CODING_H_ */