From: Eric Sesterhenn / snakebyte Date: Thu, 26 Jan 2006 21:02:49 +0000 (+0100) Subject: [PATCH] BUG_ON() Conversion in net/tulip/winbond-840.c X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=cca4aa83c79bcd571b06c83c50ea63cb75f1c2bb;p=deliverable%2Flinux.git [PATCH] BUG_ON() Conversion in net/tulip/winbond-840.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/winbond-840.c b/drivers/net/tulip/winbond-840.c index 5b1af3986abf..ba05dedf29d3 100644 --- a/drivers/net/tulip/winbond-840.c +++ b/drivers/net/tulip/winbond-840.c @@ -1645,7 +1645,7 @@ static int w840_suspend (struct pci_dev *pdev, pm_message_t state) /* no more hardware accesses behind this line. */ - if (np->csr6) BUG(); + BUG_ON(np->csr6); if (ioread32(ioaddr + IntrEnable)) BUG(); /* pci_power_off(pdev, -1); */