Browse Source

qcacld-3.0: Remove error print from kmsg

Propagation from qcacld-2.0 to qcacld-3.0.

Remove error print from kmsg as this print is unnecessary and
may flood the kmsg.

Change-Id: I0978f88af6677cb0c1e1db5eae7e5d6a69bd4b70
CRs-Fixed: 997243
Himanshu Agarwal 9 years ago
parent
commit
8c66df3699
1 changed files with 1 additions and 4 deletions
  1. 1 4
      core/dp/txrx/ol_rx_fwd.c

+ 1 - 4
core/dp/txrx/ol_rx_fwd.c

@@ -247,11 +247,8 @@ uint64_t ol_rx_get_fwd_to_tx_packet_count(uint8_t vdev_id)
 	struct ol_txrx_vdev_t *vdev = NULL;
 
 	vdev = (struct ol_txrx_vdev_t *)ol_txrx_get_vdev_from_vdev_id(vdev_id);
-	if (!vdev) {
-		TXRX_PRINT(TXRX_PRINT_LEVEL_ERR,
-			"%s: vdev is NULL for vdev id %d", __func__, vdev_id);
+	if (!vdev)
 		return 0;
-	}
 
 	return vdev->fwd_to_tx_packets;
 }