mirror of https://gitee.com/openkylin/linux.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 <snakebyte@gmx.de> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
7e0b58f32f
commit
cca4aa83c7
|
@ -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); */
|
||||
|
|
Loading…
Reference in New Issue