Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 571ecf67 authored by Johannes Berg's avatar Johannes Berg Committed by David S. Miller
Browse files

[MAC80211]: split RX handlers into own file

parent bbf25010
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -255,4 +255,13 @@ enum ieee80211_radiotap_type {
	(((x) == 14) ? 2484 : ((x) * 5) + 2407) : \
	((x) + 1000) * 5)

/* helpers */
static inline int ieee80211_get_radiotap_len(unsigned char *data)
{
	struct ieee80211_radiotap_header *hdr =
		(struct ieee80211_radiotap_header *)data;

	return le16_to_cpu(hdr->it_len);
}

#endif				/* IEEE80211_RADIOTAP_H */
+1 −0
Original line number Diff line number Diff line
@@ -18,4 +18,5 @@ mac80211-objs := \
	aes_ccm.o \
	wme.o \
	ieee80211_cfg.o \
	rx.o \
	$(mac80211-objs-y)