#ifndef _ASM_GENERIC_BITOPS_FFZ_H_ #define _ASM_GENERIC_BITOPS_FFZ_H_ /* * ffz - find first zero in word. * @word: The word to search * * Undefined if no zero exists, so code should check against ~0UL first. */ #define ffz(x) __ffs(~(x)) #endif /* _ASM_GENERIC_BITOPS_FFZ_H_ */ ttps://git.distanz.ch/cgit.cgi/linux/net-next.git/atom/?h=nds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2016-12-17 11:58:29 +0100
committerSimon Wunderlich <sw@simonwunderlich.de>2017-01-26 08:34:20 +0100
commit269cee621847a09b9cfcdb6469ff9b546efbcac1 (patch)
treee70304c9553e4ee244456aa754aca5bdc7238699
parentac79cbb96b58614ce13c4fccc00a9b4d43c2f79b (diff)
batman-adv: Remove unused variable in batadv_tt_local_set_flags
Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>