Browse Source

iwlwifi: pcie: remove pointer from debug message

Since this pointer is not shown anywhere else, it's useless.
Remove it, just keeping the indexes.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg 10 years ago
parent
commit
f02d2ccd61
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/net/wireless/intel/iwlwifi/pcie/rx.c

+ 1 - 2
drivers/net/wireless/intel/iwlwifi/pcie/rx.c

@@ -996,8 +996,7 @@ restart:
 		rxb = rxq->queue[i];
 		rxb = rxq->queue[i];
 		rxq->queue[i] = NULL;
 		rxq->queue[i] = NULL;
 
 
-		IWL_DEBUG_RX(trans, "rxbuf: HW = %d, SW = %d (%p)\n",
-			     r, i, rxb);
+		IWL_DEBUG_RX(trans, "rxbuf: HW = %d, SW = %d\n", r, i);
 		iwl_pcie_rx_handle_rb(trans, rxb, emergency);
 		iwl_pcie_rx_handle_rb(trans, rxb, emergency);
 
 
 		i = (i + 1) & RX_QUEUE_MASK;
 		i = (i + 1) & RX_QUEUE_MASK;