diff options
author | Lu Baolu <baolu.lu@linux.intel.com> | 2019-05-24 14:30:56 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-01-27 14:50:51 +0100 |
commit | 725a96b6f66eaea3d700b30f84c18c76eee404bd (patch) | |
tree | 8f211b400f1763b810fa59816a67b40d0119daab /drivers/iommu/iommu.c | |
parent | 5004fece16d566531c85f99bf706afc1f31e0fd2 (diff) | |
download | linux-stable-725a96b6f66eaea3d700b30f84c18c76eee404bd.tar.gz linux-stable-725a96b6f66eaea3d700b30f84c18c76eee404bd.tar.bz2 linux-stable-725a96b6f66eaea3d700b30f84c18c76eee404bd.zip |
iommu: Add missing new line for dma type
[ Upstream commit 24f307d8abf79486dd3c1b645037df7d91602aaa ]
So that all types are printed in the same format.
Fixes: c52c72d3dee81 ("iommu: Add sysfs attribyte for domain type")
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/iommu/iommu.c')
-rw-r--r-- | drivers/iommu/iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c index ee25ec22778e..b82bec4224b9 100644 --- a/drivers/iommu/iommu.c +++ b/drivers/iommu/iommu.c @@ -317,7 +317,7 @@ static ssize_t iommu_group_show_type(struct iommu_group *group, type = "unmanaged\n"; break; case IOMMU_DOMAIN_DMA: - type = "DMA"; + type = "DMA\n"; break; } } |