提交 c7f570a5 编写于 作者: P Peter Chubb 提交者: Tony Luck

[IA64] Fix pci.c kernel compilation breakage.

The recent change to convert the is_enabled flag in the PCI device to an
atomic count broke the IA64 compilation.

As pcibios_disable_device is only ever called if the reference count
is zero, convert the if to a BUG_ON.
Signed-off-by: NPeter Chubb <peterc@gelato.unsw.edu.au>
Signed-off-by: NTony Luck <tony.luck@intel.com>
上级 3e577a80
...@@ -564,8 +564,8 @@ pcibios_enable_device (struct pci_dev *dev, int mask) ...@@ -564,8 +564,8 @@ pcibios_enable_device (struct pci_dev *dev, int mask)
void void
pcibios_disable_device (struct pci_dev *dev) pcibios_disable_device (struct pci_dev *dev)
{ {
if (dev->is_enabled) BUG_ON(atomic_read(&dev->enable_cnt));
acpi_pci_irq_disable(dev); acpi_pci_irq_disable(dev);
} }
void void
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册