radeong: Make is_r3xx inline to avoid warnings.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 25 Jan 2010 19:04:15 +0000 (11:04 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 25 Jan 2010 19:30:39 +0000 (11:30 -0800)
Split from Marek's immd-mode patch.

src/gallium/winsys/drm/radeon/core/radeon_drm.h

index ddd7983824a5e04f64607d57671271e7e535f7c6..077388ee028a2d497e25bb96f27c91596963b4a0 100644 (file)
@@ -81,7 +81,7 @@ void radeon_destroy_drm_api(struct drm_api* api);
 /* Guess at whether this chipset should use r300g.
  *
  * I believe that this check is valid, but I haven't been exhaustive. */
-static boolean is_r3xx(int pciid)
+static INLINE boolean is_r3xx(int pciid)
 {
     return (pciid > 0x3150) && (pciid < 0x796f);
 }