diff options
author | Jiang Liu <jiang.liu@linux.intel.com> | 2014-01-06 01:18:16 -0500 |
---|---|---|
committer | Joerg Roedel <joro@8bytes.org> | 2014-01-09 06:43:33 -0500 |
commit | 694835dc227ad203886457aa447025d09b2f7523 (patch) | |
tree | 483c790048876db04bbcba144f6dd6a675a4c980 | |
parent | b8a2d2881e6682464f6a832eea4c9be298d70c41 (diff) |
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>
-rw-r--r-- | drivers/iommu/dmar.c | 5 | ||||
-rw-r--r-- | drivers/iommu/intel_irq_remapping.c | 4 | ||||
-rw-r--r-- | include/linux/dmar.h | 4 | ||||
-rw-r--r-- | include/linux/intel-iommu.h | 1 |
4 files changed, 8 insertions, 6 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); | |||
52 | struct acpi_table_header * __initdata dmar_tbl; | 52 | struct acpi_table_header * __initdata dmar_tbl; |
53 | static acpi_size dmar_tbl_size; | 53 | static acpi_size dmar_tbl_size; |
54 | 54 | ||
55 | static int alloc_iommu(struct dmar_drhd_unit *drhd); | ||
56 | |||
55 | static void __init dmar_register_drhd_unit(struct dmar_drhd_unit *drhd) | 57 | static void __init dmar_register_drhd_unit(struct dmar_drhd_unit *drhd) |
56 | { | 58 | { |
57 | /* | 59 | /* |
@@ -649,7 +651,7 @@ out: | |||
649 | return err; | 651 | return err; |
650 | } | 652 | } |
651 | 653 | ||
652 | int alloc_iommu(struct dmar_drhd_unit *drhd) | 654 | static int alloc_iommu(struct dmar_drhd_unit *drhd) |
653 | { | 655 | { |
654 | struct intel_iommu *iommu; | 656 | struct intel_iommu *iommu; |
655 | u32 ver, sts; | 657 | u32 ver, sts; |
@@ -1366,4 +1368,5 @@ int __init dmar_ir_support(void) | |||
1366 | return 0; | 1368 | return 0; |
1367 | return dmar->flags & 0x1; | 1369 | return dmar->flags & 0x1; |
1368 | } | 1370 | } |
1371 | |||
1369 | IOMMU_INIT_POST(detect_intel_iommu); | 1372 | IOMMU_INIT_POST(detect_intel_iommu); |
diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c index b9256a4f946d..10d3187e5fa0 100644 --- a/drivers/iommu/intel_irq_remapping.c +++ b/drivers/iommu/intel_irq_remapping.c | |||
@@ -40,6 +40,8 @@ static int ir_ioapic_num, ir_hpet_num; | |||
40 | 40 | ||
41 | static DEFINE_RAW_SPINLOCK(irq_2_ir_lock); | 41 | static DEFINE_RAW_SPINLOCK(irq_2_ir_lock); |
42 | 42 | ||
43 | static int __init parse_ioapics_under_ir(void); | ||
44 | |||
43 | static struct irq_2_iommu *irq_2_iommu(unsigned int irq) | 45 | static struct irq_2_iommu *irq_2_iommu(unsigned int irq) |
44 | { | 46 | { |
45 | struct irq_cfg *cfg = irq_get_chip_data(irq); | 47 | struct irq_cfg *cfg = irq_get_chip_data(irq); |
@@ -773,7 +775,7 @@ static int ir_parse_ioapic_hpet_scope(struct acpi_dmar_header *header, | |||
773 | * Finds the assocaition between IOAPIC's and its Interrupt-remapping | 775 | * Finds the assocaition between IOAPIC's and its Interrupt-remapping |
774 | * hardware unit. | 776 | * hardware unit. |
775 | */ | 777 | */ |
776 | int __init parse_ioapics_under_ir(void) | 778 | static int __init parse_ioapics_under_ir(void) |
777 | { | 779 | { |
778 | struct dmar_drhd_unit *drhd; | 780 | struct dmar_drhd_unit *drhd; |
779 | int ir_supported = 0; | 781 | int ir_supported = 0; |
diff --git a/include/linux/dmar.h b/include/linux/dmar.h index 205ee37eed73..1a60dd630bb4 100644 --- a/include/linux/dmar.h +++ b/include/linux/dmar.h | |||
@@ -33,6 +33,7 @@ struct acpi_dmar_header; | |||
33 | #define DMAR_X2APIC_OPT_OUT 0x2 | 33 | #define DMAR_X2APIC_OPT_OUT 0x2 |
34 | 34 | ||
35 | struct intel_iommu; | 35 | struct intel_iommu; |
36 | |||
36 | #ifdef CONFIG_DMAR_TABLE | 37 | #ifdef CONFIG_DMAR_TABLE |
37 | extern struct acpi_table_header *dmar_tbl; | 38 | extern struct acpi_table_header *dmar_tbl; |
38 | struct dmar_drhd_unit { | 39 | struct dmar_drhd_unit { |
@@ -69,9 +70,6 @@ extern void dmar_free_dev_scope(struct pci_dev ***devices, int *cnt); | |||
69 | /* Intel IOMMU detection */ | 70 | /* Intel IOMMU detection */ |
70 | extern int detect_intel_iommu(void); | 71 | extern int detect_intel_iommu(void); |
71 | extern int enable_drhd_fault_handling(void); | 72 | extern int enable_drhd_fault_handling(void); |
72 | |||
73 | extern int parse_ioapics_under_ir(void); | ||
74 | extern int alloc_iommu(struct dmar_drhd_unit *); | ||
75 | #else | 73 | #else |
76 | static inline int detect_intel_iommu(void) | 74 | static inline int detect_intel_iommu(void) |
77 | { | 75 | { |
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h index de1e5e936420..f2c4114b8665 100644 --- a/include/linux/intel-iommu.h +++ b/include/linux/intel-iommu.h | |||
@@ -348,7 +348,6 @@ static inline void __iommu_flush_cache( | |||
348 | extern struct dmar_drhd_unit * dmar_find_matched_drhd_unit(struct pci_dev *dev); | 348 | extern struct dmar_drhd_unit * dmar_find_matched_drhd_unit(struct pci_dev *dev); |
349 | extern int dmar_find_matched_atsr_unit(struct pci_dev *dev); | 349 | extern int dmar_find_matched_atsr_unit(struct pci_dev *dev); |
350 | 350 | ||
351 | extern int alloc_iommu(struct dmar_drhd_unit *drhd); | ||
352 | extern void free_iommu(struct intel_iommu *iommu); | 351 | extern void free_iommu(struct intel_iommu *iommu); |
353 | extern int dmar_enable_qi(struct intel_iommu *iommu); | 352 | extern int dmar_enable_qi(struct intel_iommu *iommu); |
354 | extern void dmar_disable_qi(struct intel_iommu *iommu); | 353 | extern void dmar_disable_qi(struct intel_iommu *iommu); |