Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

radiotap: add 0-length PSDU "not captured" type

This type was defined in radiotap but we didn't add it to the
header file, add it now.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>

+2 -1
+2 -1
include/net/ieee80211_radiotap.h
··· 1 1 /* 2 2 * Copyright (c) 2017 Intel Deutschland GmbH 3 - * Copyright (c) 2018 Intel Corporation 3 + * Copyright (c) 2018-2019 Intel Corporation 4 4 * 5 5 * Permission to use, copy, modify, and/or distribute this software for any 6 6 * purpose with or without fee is hereby granted, provided that the above ··· 343 343 344 344 enum ieee80211_radiotap_zero_len_psdu_type { 345 345 IEEE80211_RADIOTAP_ZERO_LEN_PSDU_SOUNDING = 0, 346 + IEEE80211_RADIOTAP_ZERO_LEN_PSDU_NOT_CAPTURED = 1, 346 347 IEEE80211_RADIOTAP_ZERO_LEN_PSDU_VENDOR = 0xff, 347 348 }; 348 349