summaryrefslogtreecommitdiff
path: root/dissector_netlink.c
blob: 1884d745bba329a203b61d1cd3f0555dbdcff38e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * netsniff-ng - the packet sniffing beast
 * Copyright 2014 Tobias Klauser.
 * Subject to the GPL, version 2.
 */

#include "dissector.h"
#include "dissector_netlink.h"

static inline void dissector_init_entry(int type)
{
	dissector_set_print_type(dissector_get_netlink_entry_point(), type);
}

static inline void dissector_init_exit(int type)
{
	dissector_set_print_type(&none_ops, type);
}

void dissector_init_netlink(int fnttype)
{
	dissector_init_entry(fnttype);
	dissector_init_exit(fnttype);
}

void dissector_cleanup_netlink(void)
{
}
pt>
authorArnaud Pouliquen <arnaud.pouliquen@st.com>2016-09-13 09:58:23 +0200
committerMark Brown <broonie@kernel.org>2016-09-14 18:15:05 +0100
commit5a4326d1c21bc9aa958d5e621e06cd1b13e50711 (patch)
treefb8d1e6bb0d0894a5b183ff6be775f45fdc25e6e /Documentation/i2c/fault-codes
parent29b4817d4018df78086157ea3a55c1d9424a7cfc (diff)
ASoC: sti: suppress inappropriate DT fields
Update to suppress some DT nodes that can be handled in driver using compatible string. "dai-name", "st,version"and "st,mode" are suppressed "st,tdm-mode" is added to handle TDM mode. Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/i2c/fault-codes')