qcacmn: Null terminate the rx packets list

Add NULL termination to the list of rx frames
before passing them to the high level OS.

Change-Id: Ibc51f14b8b9ef2a8dff7147f4072910e11540093
CRs-Fixed: 1116939
This commit is contained in:
Dhanashri Atre
2017-01-24 18:38:11 -08:00
committed by qcabuildsw
vanhempi 9ccbdd3623
commit 8b3f377928

Näytä tiedosto

@@ -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 */