/* * netsniff-ng - the packet sniffing beast * Copyright 2009, 2010 Daniel Borkmann. * Copyright 2014 Tobias Klauser * Subject to the GPL, version 2. */ #ifndef LOOKUP_H #define LOOKUP_H enum ports { PORTS_UDP, PORTS_TCP, PORTS_ETHER, PORTS_MAX, }; extern void lookup_init_ports(enum ports which); extern void lookup_cleanup_ports(enum ports which); extern char *lookup_port_udp(unsigned int id); extern char *lookup_port_tcp(unsigned int id); extern char *lookup_ether_type(unsigned int id); #endif /* LOOKUP_H */ sitory'/>
summaryrefslogtreecommitdiff
path: root/sound/soc/spear
diff options
context:
space:
mode:
authorMadhavan Srinivasan <maddy@linux.vnet.ibm.com>2016-12-19 17:46:53 +0530
committerMichael Ellerman <mpe@ellerman.id.au>2017-01-18 16:03:34 +1100
commitdf21d2fa733035e4d414379960f94b2516b41296 (patch)
treec1e7e935e46071b4a134a814fae9fc8fec6324fb /sound/soc/spear
parent387bbc974f6adf91aa635090f73434ed10edd915 (diff)
selftest/powerpc: Wrong PMC initialized in pmc56_overflow test
Test uses PMC2 to count the event. But PMC1 is being initialized. Patch to fix it. Fixes: 3752e453f6ba ('selftests/powerpc: Add tests of PMU EBBs') Signed-off-by: Madhavan Srinivasan <maddy@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'sound/soc/spear')