Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=79da0874410c0af8958f0ee3a50aa5b67eecc640
Commit:     79da0874410c0af8958f0ee3a50aa5b67eecc640
Parent:     966396d3a05c8049fce5c81c49138e5ee1b05443
Author:     Joerg Roedel <[EMAIL PROTECTED]>
AuthorDate: Wed Oct 24 12:49:49 2007 +0200
Committer:  Thomas Gleixner <[EMAIL PROTECTED]>
CommitDate: Tue Oct 30 00:22:22 2007 +0100

    x86 gart: make some variables and functions static
    
    This patch makes some functions and variables static in pci-gart_64.c which 
are
    not used somewhere else.
    
    Signed-off-by: Joerg Roedel <[EMAIL PROTECTED]>
    Acked-by: Muli Ben-Yehuda <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 arch/x86/kernel/pci-gart_64.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kernel/pci-gart_64.c b/arch/x86/kernel/pci-gart_64.c
index c9ba80b..3be0b83 100644
--- a/arch/x86/kernel/pci-gart_64.c
+++ b/arch/x86/kernel/pci-gart_64.c
@@ -36,11 +36,11 @@
 #include <asm/dma.h>
 #include <asm/k8.h>
 
-unsigned long iommu_bus_base;  /* GART remapping area (physical) */
+static unsigned long iommu_bus_base;   /* GART remapping area (physical) */
 static unsigned long iommu_size;       /* size of remapping area bytes */
 static unsigned long iommu_pages;      /* .. and in pages */
 
-u32 *iommu_gatt_base;          /* Remapping table */
+static u32 *iommu_gatt_base;           /* Remapping table */
 
 /* If this is disabled the IOMMU will use an optimized flushing strategy
    of only flushing when an mapping is reused. With it true the GART is 
flushed 
@@ -135,8 +135,8 @@ static void flush_gart(void)
 /* Debugging aid for drivers that don't free their IOMMU tables */
 static void **iommu_leak_tab; 
 static int leak_trace;
-int iommu_leak_pages = 20; 
-void dump_leak(void)
+static int iommu_leak_pages = 20;
+static void dump_leak(void)
 {
        int i;
        static int dump; 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to