/* * netsniff-ng - the packet sniffing beast * Copyright 2014 Tobias Klauser. * Subject to the GPL, version 2. */ #ifndef DISSECTOR_NETLINK_H #define DISSECTOR_NETLINK_H #include "config.h" #include "protos.h" extern void dissector_init_netlink(int fnttype); extern void dissector_cleanup_netlink(void); static inline struct protocol *dissector_get_netlink_entry_point(void) { #ifdef HAVE_LIBNL return &nlmsg_ops; #else return &none_ops; #endif } static inline struct protocol *dissector_get_netlink_exit_point(void) { return &none_ops; } #endif /* DISSECTOR_NETLINK_H */ >
summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorFelipe F. Tonello <eu@felipetonello.com>2016-01-29 11:01:00 +0000
committerMark Brown <broonie@kernel.org>2016-02-05 13:32:40 +0000
commit57e756d30268a0373cce97165bd57331554f4bfd (patch)
tree52371f2ba7cf7e2240c3e59c195ecb1142d47321 /sound
parent089dfaf7f7f9b18e3dffb6d9ee8b37089025b952 (diff)
ASoC: fsl-asoc-card: add cs4271 and cs4272 support
add cs4271 and cs42727 support for fsl-asoc-card Signed-off-by: Felipe F. Tonello <eu@felipetonello.com> Acked-by: Nicolin Chen <nicoleotsuka@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')