iommu/vt-d: Fix indentation of goto labels

Remove blanks before goto labels.

Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Link: https://lore.kernel.org/r/20220214025704.3184654-1-baolu.lu@linux.intel.com
Link: https://lore.kernel.org/r/20220301020159.633356-9-baolu.lu@linux.intel.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
Lu Baolu
2022-03-01 10:01:55 +08:00
committed by Joerg Roedel
parent 782861df7d
commit 2187a57ef0

View File

@@ -827,7 +827,7 @@ struct intel_iommu *device_to_iommu(struct device *dev, u8 *bus, u8 *devfn)
} }
if (pdev && drhd->include_all) { if (pdev && drhd->include_all) {
got_pdev: got_pdev:
if (bus && devfn) { if (bus && devfn) {
*bus = pdev->bus->number; *bus = pdev->bus->number;
*devfn = pdev->devfn; *devfn = pdev->devfn;
@@ -836,7 +836,7 @@ struct intel_iommu *device_to_iommu(struct device *dev, u8 *bus, u8 *devfn)
} }
} }
iommu = NULL; iommu = NULL;
out: out:
if (iommu_is_dummy(iommu, dev)) if (iommu_is_dummy(iommu, dev))
iommu = NULL; iommu = NULL;