diff options
author | Jiang Liu <jiang.liu@linux.intel.com> | 2014-02-19 14:07:36 +0800 |
---|---|---|
committer | Joerg Roedel <joro@8bytes.org> | 2014-03-04 17:51:06 +0100 |
commit | 2e45528930388658603ea24d49cf52867b928d3e (patch) | |
tree | 751171aa8f2f9a00f080adb6201cf9d9acd02f94 /include/linux | |
parent | 59ce0515cdaf3b7d47893d12f61e51d691863788 (diff) | |
download | linux-2e45528930388658603ea24d49cf52867b928d3e.tar.gz linux-2e45528930388658603ea24d49cf52867b928d3e.tar.bz2 linux-2e45528930388658603ea24d49cf52867b928d3e.zip |
iommu/vt-d: Unify the way to process DMAR device scope array
Now we have a PCI bus notification based mechanism to update DMAR
device scope array, we could extend the mechanism to support boot
time initialization too, which will help to unify and simplify
the implementation.
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Signed-off-by: Joerg Roedel <joro@8bytes.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/dmar.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/dmar.h b/include/linux/dmar.h index 4e196430f1b2..0a92e4d978bc 100644 --- a/include/linux/dmar.h +++ b/include/linux/dmar.h @@ -173,7 +173,6 @@ extern int arch_setup_dmar_msi(unsigned int irq); #ifdef CONFIG_INTEL_IOMMU extern int iommu_detected, no_iommu; -extern int dmar_parse_rmrr_atsr_dev(void); extern int dmar_parse_one_rmrr(struct acpi_dmar_header *header); extern int dmar_parse_one_atsr(struct acpi_dmar_header *header); extern int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info); @@ -188,10 +187,6 @@ static inline int dmar_parse_one_atsr(struct acpi_dmar_header *header) { return 0; } -static inline int dmar_parse_rmrr_atsr_dev(void) -{ - return 0; -} static inline int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info) { return 0; |