[Bluetooth] Eliminate checks for impossible conditions in IRQ handler

Our info structure and info->hdev is always passed to the IRQ handler,
so we don't have to worry about these checks in every interrupt.

Leave a BUG_ON() just to help unwary programmers, but these could
probably be removed as well.

Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
这个提交包含在:
Jeff Garzik
2007-10-20 13:45:57 +02:00
提交者 David S. Miller
父节点 166d2f6a43
当前提交 ac019360fe
修改 4 个文件,包含 4 行新增16 行删除

查看文件

@@ -298,10 +298,7 @@ static irqreturn_t dtl1_interrupt(int irq, void *dev_inst)
int boguscount = 0;
int iir, lsr;
if (!info || !info->hdev) {
BT_ERR("Call of irq %d for unknown device", irq);
return IRQ_NONE;
}
BUG_ON(!info->hdev);
iobase = info->p_dev->io.BasePort1;