Add NULL termination to the list of rx frames before passing them to the high level OS. Change-Id: Ibc51f14b8b9ef2a8dff7147f4072910e11540093 CRs-Fixed: 1116939
@@ -160,6 +160,7 @@ do { \
qdf_nbuf_set_next((tail), (elem)); \
} \
(tail) = (elem); \
+ qdf_nbuf_set_next((tail), NULL); \
} while (0)
#endif /* _DP_RX_H */