/* 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 . */ #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_ */ -rx-pump-back net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/rds/Kconfig
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-22 12:45:47 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-22 12:45:47 -0800
commit24b86839fab8e8059d2b16e0067dc86a1a0d3514 (patch)
treed764e86e2bae3ef57779912ed062be725b1ca431 /net/rds/Kconfig
parent585457fc8383e373ab923e46cd1f70bbfe46763f (diff)
parent0fec9557fd0c5349e3bd1a2141612a60bc20bb71 (diff)
Merge branch 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull smp/hotplug fix from Thomas Gleixner: "Remove an unused variable which is a leftover from the notifier removal" * 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: cpu/hotplug: Remove unused but set variable in _cpu_down()
Diffstat (limited to 'net/rds/Kconfig')