mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
BUG_ON cleanup in drivers/net/tokenring/
This patch converts one if() BUG(); to BUG_ON(); so it can be safely optimized away. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
parent
52e5f9d1cf
commit
644c12d7f6
1 changed files with 1 additions and 2 deletions
|
@ -224,8 +224,7 @@ static void __devexit tms_pci_detach (struct pci_dev *pdev)
|
|||
{
|
||||
struct net_device *dev = pci_get_drvdata(pdev);
|
||||
|
||||
if (!dev)
|
||||
BUG();
|
||||
BUG_ON(!dev);
|
||||
unregister_netdev(dev);
|
||||
release_region(dev->base_addr, TMS_PCI_IO_EXTENT);
|
||||
free_irq(dev->irq, dev);
|
||||
|
|
Loading…
Reference in a new issue