diff options
| author | DARAM SUDHA <dsudha@qti.qualcomm.com> | 2014-07-17 16:43:12 +0530 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-07-19 18:03:45 -0700 |
| commit | dae4ce9cec1f7b42e70071adf6cea0d924e343da (patch) | |
| tree | 94015afe8d99fcde728ca1e922764042c610d4e6 | |
| parent | d594e01af3abac7a845df0ddc5bf93b73d5069c9 (diff) | |
ol_rx_peer_unmap_handler, correcting misleading log
The CLD ol_rx_peer_unmap_handler function has a log
TXRX_PRINT(TXRX_PRINT_LEVEL_ERR, "%s: Delete Peer %p\n",
modified to represent the peer-id, as it is removing the reference.
Change-Id: Idc176d6bb0165811f8ad0bdbfffc98ab9bf1166e
CRs-FIXED: 695102
| -rw-r--r-- | CORE/CLD_TXRX/TXRX/ol_txrx_peer_find.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CORE/CLD_TXRX/TXRX/ol_txrx_peer_find.c b/CORE/CLD_TXRX/TXRX/ol_txrx_peer_find.c index 0c0b29e90a70..44567d9331d9 100644 --- a/CORE/CLD_TXRX/TXRX/ol_txrx_peer_find.c +++ b/CORE/CLD_TXRX/TXRX/ol_txrx_peer_find.c @@ -488,7 +488,9 @@ ol_rx_peer_unmap_handler( * Remove a reference to the peer. * If there are no more references, delete the peer object. */ - TXRX_PRINT(TXRX_PRINT_LEVEL_ERR, "%s: Delete Peer %p\n", __func__, peer); + TXRX_PRINT(TXRX_PRINT_LEVEL_ERR, + "%s: Remove the ID %d reference to peer %p\n", + __func__, peer_id, peer); ol_txrx_peer_unref_delete(peer); } |
