replace __inline and __inline__ with INLINE macro
authorBrian Paul <brian.paul@tungstengraphics.com>
Sat, 21 Jun 2008 16:55:24 +0000 (10:55 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Sat, 21 Jun 2008 16:55:24 +0000 (10:55 -0600)
src/mesa/drivers/dri/common/memops.h
src/mesa/drivers/dri/common/mmio.h

index 4952d788e81586ad1738cab1e3780f0be5ac29e7..9cd1d8ec3fa95d7941489180e0f04614574d0109 100644 (file)
@@ -4,7 +4,7 @@
 * memset an area in I/O space
 * We need to be careful about this on some archs
 */
-static __inline__ void drimemsetio(void* address, int c, int size)
+static INLINE void drimemsetio(void* address, int c, int size)
 {
 #if defined(__powerpc__) || defined(__ia64__)
      int i;
index 2b7b4123e5abc2fac70624793c584a0402edb654..89871aab59ea1e860fd549eaa56bf03535804463 100644 (file)
@@ -37,7 +37,7 @@
 
 #if defined( __powerpc__ )
 
-static __inline__ u_int32_t
+static INLINE u_int32_t
 read_MMIO_LE32( volatile void * base, unsigned long offset )
 {
    u_int32_t val;
@@ -50,7 +50,7 @@ read_MMIO_LE32( volatile void * base, unsigned long offset )
 
 #else
 
-static __inline__ u_int32_t
+static INLINE u_int32_t
 read_MMIO_LE32( volatile void * base, unsigned long offset )
 {
    volatile u_int32_t * p = (volatile u_int32_t *) (((volatile char *) base) + offset);