summaryrefslogtreecommitdiffstats
path: root/drivers/iommu/iommu.c
diff options
context:
space:
mode:
authorJoerg Roedel2015-05-28 18:41:28 +0200
committerJoerg Roedel2015-06-05 15:13:10 +0200
commit843cb6dc7749a25849797cc9aeeb86f87a8acb84 (patch)
tree2bc5bab005f98474addcad7aae474d0354dcb87b /drivers/iommu/iommu.c
parentiommu: Clean up after a failed bus initialization (diff)
downloadkernel-qcow2-linux-843cb6dc7749a25849797cc9aeeb86f87a8acb84.tar.gz
kernel-qcow2-linux-843cb6dc7749a25849797cc9aeeb86f87a8acb84.tar.xz
kernel-qcow2-linux-843cb6dc7749a25849797cc9aeeb86f87a8acb84.zip
iommu: Call remove_device call-back after driver release
Do not remove the device from the IOMMU while the driver is still attached. Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/iommu.c')
-rw-r--r--drivers/iommu/iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
index f0e0a233c902..d69e0ca77f82 100644
--- a/drivers/iommu/iommu.c
+++ b/drivers/iommu/iommu.c
@@ -779,7 +779,7 @@ static int iommu_bus_notifier(struct notifier_block *nb,
if (action == BUS_NOTIFY_ADD_DEVICE) {
if (ops->add_device)
return ops->add_device(dev);
- } else if (action == BUS_NOTIFY_DEL_DEVICE) {
+ } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
if (ops->remove_device && dev->iommu_group) {
ops->remove_device(dev);
return 0;