Commit f5585f5d authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] fix agp compile warning

A static function in a header where presumably a static inline was intended.
parent fccbe384
...@@ -47,7 +47,7 @@ static void __attribute__((unused)) global_cache_flush(void) ...@@ -47,7 +47,7 @@ static void __attribute__((unused)) global_cache_flush(void)
flush_agp_cache(); flush_agp_cache();
} }
#else #else
static void global_cache_flush(void) static inline void global_cache_flush(void)
{ {
flush_agp_cache(); flush_agp_cache();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment