From: Eric Sesterhenn / snakebyte Date: Thu, 26 Jan 2006 21:02:51 +0000 (+0100) Subject: [PATCH] BUG_ON() Conversion in net/tulip/xircom_cb.c X-Git-Tag: v2.6.17-rc1~1186^2~78 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a707cd6e2d0a8c21dd8aeef8e4a0c0ccf8774fa9;p=karo-tx-linux.git [PATCH] BUG_ON() Conversion in net/tulip/xircom_cb.c hi, this changes if() BUG(); constructs to BUG_ON() which is cleaner and can better optimized away Signed-off-by: Eric Sesterhenn Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/tulip/xircom_cb.c b/drivers/net/tulip/xircom_cb.c index 60d1e05ab732..c5c738a51ee3 100644 --- a/drivers/net/tulip/xircom_cb.c +++ b/drivers/net/tulip/xircom_cb.c @@ -598,10 +598,8 @@ static void setup_descriptors(struct xircom_private *card) enter("setup_descriptors"); - if (card->rx_buffer == NULL) - BUG(); - if (card->tx_buffer == NULL) - BUG(); + BUG_ON(card->rx_buffer == NULL); + BUG_ON(card->tx_buffer == NULL); /* Receive descriptors */ memset(card->rx_buffer, 0, 128); /* clear the descriptors */