aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/amd_iommu.c
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2009-06-09 12:00:37 +0200
committerJoerg Roedel <joerg.roedel@amd.com>2009-06-09 12:01:58 +0200
commite9a22a13c71986851e931bdfa054f68839ff8576 (patch)
tree43696d11c985bc09d43897287b561b5ba8af3962 /arch/x86/kernel/amd_iommu.c
parentamd-iommu: detach device explicitly before attaching it to a new domain (diff)
downloadlinux-dev-e9a22a13c71986851e931bdfa054f68839ff8576.tar.xz
linux-dev-e9a22a13c71986851e931bdfa054f68839ff8576.zip
amd-iommu: remove unnecessary "AMD IOMMU: " prefix
That prefix is already included in the DUMP_printk macro. So there is no need to repeat it in the format string. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to '')
-rw-r--r--arch/x86/kernel/amd_iommu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c
index 772e91088e40..1c60554537c3 100644
--- a/arch/x86/kernel/amd_iommu.c
+++ b/arch/x86/kernel/amd_iommu.c
@@ -1266,9 +1266,8 @@ static int get_device_resources(struct device *dev,
dma_dom = (*iommu)->default_dom;
*domain = &dma_dom->domain;
attach_device(*iommu, *domain, *bdf);
- DUMP_printk(KERN_INFO "AMD IOMMU: Using protection domain "
- "%d for device %s\n",
- (*domain)->id, dev_name(dev));
+ DUMP_printk("Using protection domain %d for device %s\n",
+ (*domain)->id, dev_name(dev));
}
if (domain_for_device(_bdf) == NULL)