diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2007-10-24 06:49:50 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-29 19:22:22 -0400 |
commit | 0440d4c00dadf8b97657c0864e4d54a088430de8 (patch) | |
tree | 4750cbab8af0b2b948519553ca19a724fdce8d24 /include | |
parent | 79da0874410c0af8958f0ee3a50aa5b67eecc640 (diff) |
x86 gart: rename symbols only used for the GART implementation
This patch renames the 4 symbols iommu_hole_init(), iommu_aperture,
iommu_aperture_allowed, iommu_aperture_disabled. All these symbols are only
used for the GART implementation of IOMMUs.
It adds and additional gart_ prefix to them.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/gart.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/asm-x86/gart.h b/include/asm-x86/gart.h index 0765f3d67851..f704c50519b8 100644 --- a/include/asm-x86/gart.h +++ b/include/asm-x86/gart.h | |||
@@ -9,16 +9,16 @@ extern int iommu_detected; | |||
9 | extern void gart_iommu_init(void); | 9 | extern void gart_iommu_init(void); |
10 | extern void gart_iommu_shutdown(void); | 10 | extern void gart_iommu_shutdown(void); |
11 | extern void __init gart_parse_options(char *); | 11 | extern void __init gart_parse_options(char *); |
12 | extern void iommu_hole_init(void); | 12 | extern void gart_iommu_hole_init(void); |
13 | extern int fallback_aper_order; | 13 | extern int fallback_aper_order; |
14 | extern int fallback_aper_force; | 14 | extern int fallback_aper_force; |
15 | extern int iommu_aperture; | 15 | extern int gart_iommu_aperture; |
16 | extern int iommu_aperture_allowed; | 16 | extern int gart_iommu_aperture_allowed; |
17 | extern int iommu_aperture_disabled; | 17 | extern int gart_iommu_aperture_disabled; |
18 | extern int fix_aperture; | 18 | extern int fix_aperture; |
19 | #else | 19 | #else |
20 | #define iommu_aperture 0 | 20 | #define gart_iommu_aperture 0 |
21 | #define iommu_aperture_allowed 0 | 21 | #define gart_iommu_aperture_allowed 0 |
22 | 22 | ||
23 | static inline void gart_iommu_shutdown(void) | 23 | static inline void gart_iommu_shutdown(void) |
24 | { | 24 | { |