/* * 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 "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) { return &nlmsg_ops; } static inline struct protocol *dissector_get_netlink_exit_point(void) { return &none_ops; } #endif /* DISSECTOR_NETLINK_H */ git.distanz.ch/cgit.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian König <christian.koenig@amd.com>2016-07-20 16:53:36 +0200
committerAlex Deucher <alexander.deucher@amd.com>2016-07-29 14:37:03 -0400
commitebff485e9314f8c53f6b22eba0dfbec7228ab268 (patch)
treebfe32720f5ef21855af1db8274142491716959ba
parentc4120d55ffa44746584a8a1e5b00cb7eafc006ff (diff)
drm/amdgpu: use begin/end_use for VCE power/clock gating
This fixes turning power and clock on when it is actually needed. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Edward O'Callaghan <funfunctor@folklore1984.net> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>