qcacld-3.0: Allocate memory of size matching its variable type
dp_stats is of type struct dp_tx_rx_stats, but memory is allocated of type
struct hdd_tx_rx_stats. Both structs are of different size and
sizeof(struct hdd_tx_rx_stats) is lesser than sizeof(struct dp_tx_rx_stats)
which is causing access out of bounds.
Fix this issue by allocating memory of size matching its type.
Change-Id: Iccc04c38fb64d65f3483ae9b128dc316e7036ec5
CRs-Fixed: 3290287