/* * netsniff-ng - the packet sniffing beast * Copyright 2009, 2010 Daniel Borkmann. * Subject to the GPL, version 2. */ #ifndef DISSECTOR_80211_H #define DISSECTOR_80211_H #include "hash.h" #include "protos.h" extern struct hash_table ieee80211_lay2; extern void dissector_init_ieee80211(int fnttype); extern void dissector_cleanup_ieee80211(void); #ifdef HAVE_DISSECTOR_PROTOS static inline struct protocol *dissector_get_ieee80211_entry_point(void) { return &ieee80211_ops; } static inline struct protocol *dissector_get_ieee80211_exit_point(void) { return &none_ops; } #else static inline struct protocol *dissector_get_ieee80211_entry_point(void) { return NULL; } static inline struct protocol *dissector_get_ieee80211_exit_point(void) { return NULL; } #endif #endif /* DISSECTOR_80211_H */ '>net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2016-07-04 12:59:18 -0700
committerEric Anholt <eric@anholt.net>2016-07-15 15:19:52 -0700
commit20e48fd6a9252e21528c7e39b874c8fdca97f25a (patch)
tree804b5a4ca1abd1869876b565670f8bd8df3eaa94
parent7363cee5b467c31dc3af2ac98df0634bb8bbc668 (diff)
drm/vc4: Fix definition of QPU_R_MS_REV_FLAGS
We don't use it in shader validation currently, so it had no effect, but best to fix it anyway in case we do some day. Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat