diff options
Diffstat (limited to 'src/mesa/drivers/dri/common/mmio.h')
-rw-r--r-- | src/mesa/drivers/dri/common/mmio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/common/mmio.h b/src/mesa/drivers/dri/common/mmio.h index 891056e170..dc43d1cdc9 100644 --- a/src/mesa/drivers/dri/common/mmio.h +++ b/src/mesa/drivers/dri/common/mmio.h @@ -37,7 +37,7 @@ #if defined( __powerpc__ ) -static __inline__ uint32_t +static INLINE uint32_t read_MMIO_LE32( volatile void * base, unsigned long offset ) { uint32_t val; @@ -50,7 +50,7 @@ read_MMIO_LE32( volatile void * base, unsigned long offset ) #else -static __inline__ uint32_t +static INLINE uint32_t read_MMIO_LE32( volatile void * base, unsigned long offset ) { volatile uint32_t * p = (volatile uint32_t *) (((volatile char *) base) + offset); |