-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
batman-adv: Fix bat_(iv|v) function declaration header
The bat_algo.h had some functions declared which were not part of the bat_algo.c file. These are instead stored in bat_v.c and bat_iv_ogm.c. The declaration should therefore be also in bat_v.h and bat_iv_ogm,h to make them easier to find. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
- Loading branch information
Sven Eckelmann
authored and
Simon Wunderlich
committed
Jun 30, 2016
1 parent
ba41208
commit a2d0816
Showing
9 changed files
with
84 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors: | ||
* | ||
* Marek Lindner, Simon Wunderlich | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of version 2 of the GNU General Public | ||
* License as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef _BATMAN_ADV_BATADV_IV_OGM_H_ | ||
#define _BATMAN_ADV_BATADV_IV_OGM_H_ | ||
|
||
#include "main.h" | ||
|
||
int batadv_iv_init(void); | ||
|
||
#endif /* _BATMAN_ADV_BATADV_IV_OGM_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* Copyright (C) 2011-2016 B.A.T.M.A.N. contributors: | ||
* | ||
* Marek Lindner, Linus Lüssing | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of version 2 of the GNU General Public | ||
* License as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef _NET_BATMAN_ADV_BAT_V_H_ | ||
#define _NET_BATMAN_ADV_BAT_V_H_ | ||
|
||
#include "main.h" | ||
|
||
#ifdef CONFIG_BATMAN_ADV_BATMAN_V | ||
|
||
int batadv_v_init(void); | ||
void batadv_v_hardif_init(struct batadv_hard_iface *hardif); | ||
int batadv_v_mesh_init(struct batadv_priv *bat_priv); | ||
void batadv_v_mesh_free(struct batadv_priv *bat_priv); | ||
|
||
#else | ||
|
||
static inline int batadv_v_init(void) | ||
{ | ||
return 0; | ||
} | ||
|
||
static inline void batadv_v_hardif_init(struct batadv_hard_iface *hardif) | ||
{ | ||
} | ||
|
||
static inline int batadv_v_mesh_init(struct batadv_priv *bat_priv) | ||
{ | ||
return 0; | ||
} | ||
|
||
static inline void batadv_v_mesh_free(struct batadv_priv *bat_priv) | ||
{ | ||
} | ||
|
||
#endif /* CONFIG_BATMAN_ADV_BATMAN_V */ | ||
|
||
#endif /* _NET_BATMAN_ADV_BAT_V_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters