summaryrefslogtreecommitdiffstats
path: root/drivers/iommu/dmar.c
diff options
context:
space:
mode:
authorJiang Liu2014-01-06 07:18:16 +0100
committerJoerg Roedel2014-01-09 12:43:33 +0100
commit694835dc227ad203886457aa447025d09b2f7523 (patch)
tree483c790048876db04bbcba144f6dd6a675a4c980 /drivers/iommu/dmar.c
parentiommu/vt-d, trivial: clean up unused code (diff)
downloadkernel-qcow2-linux-694835dc227ad203886457aa447025d09b2f7523.tar.gz
kernel-qcow2-linux-694835dc227ad203886457aa447025d09b2f7523.tar.xz
kernel-qcow2-linux-694835dc227ad203886457aa447025d09b2f7523.zip
iommu/vt-d: mark internal functions as static
Functions alloc_iommu() and parse_ioapics_under_ir() are only used internally, so mark them as static. [Joerg: Made detect_intel_iommu() non-static again for IA64] Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com> Signed-off-by: Joerg Roedel <joro@8bytes.org>
Diffstat (limited to 'drivers/iommu/dmar.c')
-rw-r--r--drivers/iommu/dmar.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/iommu/dmar.c b/drivers/iommu/dmar.c
index 5a4e9afad3af..e3c03bb7c374 100644
--- a/drivers/iommu/dmar.c
+++ b/drivers/iommu/dmar.c
@@ -52,6 +52,8 @@ LIST_HEAD(dmar_drhd_units);
struct acpi_table_header * __initdata dmar_tbl;
static acpi_size dmar_tbl_size;
+static int alloc_iommu(struct dmar_drhd_unit *drhd);
+
static void __init dmar_register_drhd_unit(struct dmar_drhd_unit *drhd)
{
/*
@@ -649,7 +651,7 @@ out:
return err;
}
-int alloc_iommu(struct dmar_drhd_unit *drhd)
+static int alloc_iommu(struct dmar_drhd_unit *drhd)
{
struct intel_iommu *iommu;
u32 ver, sts;
@@ -1366,4 +1368,5 @@ int __init dmar_ir_support(void)
return 0;
return dmar->flags & 0x1;
}
+
IOMMU_INIT_POST(detect_intel_iommu);