Commit 7d149c5268d78d740cfdb20834328975251e7388

Authored by Rasmus Villemoes
Committed by David S. Miller
1 parent cbd5228199

net: ethernet: broadcom: bnx2x: Remove redundant #ifdef

Nothing defines _ASM_GENERIC_INT_L64_H, it is a weird way to check for
64 bit longs, and u64 should be printed using %llx anyway.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 0 additions and 4 deletions Side-by-side Diff

drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
... ... @@ -483,11 +483,7 @@
483 483  
484 484 #ifdef BNX2X_STOP_ON_ERROR
485 485 fp->tpa_queue_used |= (1 << queue);
486   -#ifdef _ASM_GENERIC_INT_L64_H
487   - DP(NETIF_MSG_RX_STATUS, "fp->tpa_queue_used = 0x%lx\n",
488   -#else
489 486 DP(NETIF_MSG_RX_STATUS, "fp->tpa_queue_used = 0x%llx\n",
490   -#endif
491 487 fp->tpa_queue_used);
492 488 #endif
493 489 }