diff options
author | Vinson Lee <[email protected]> | 2010-07-16 17:49:18 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-07-16 17:49:18 -0700 |
commit | e02c1e215eabd14d0f58415e3a8179b995109696 (patch) | |
tree | 7b252a07042b8d6832d8e21b197ca07b2bb261e7 /src/gallium/drivers/nouveau/nouveau_screen.h | |
parent | 65ba566ff1fdefe5091ad7e4a9603c6c9a5b19c3 (diff) |
nouveau: s/inline/INLINE/
Diffstat (limited to 'src/gallium/drivers/nouveau/nouveau_screen.h')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_screen.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_screen.h b/src/gallium/drivers/nouveau/nouveau_screen.h index 8eacdff0358..8c290273fb4 100644 --- a/src/gallium/drivers/nouveau/nouveau_screen.h +++ b/src/gallium/drivers/nouveau/nouveau_screen.h @@ -14,7 +14,7 @@ struct nouveau_screen { unsigned index_buffer_flags; }; -static inline struct nouveau_screen * +static INLINE struct nouveau_screen * nouveau_screen(struct pipe_screen *pscreen) { return (struct nouveau_screen *)pscreen; @@ -67,13 +67,13 @@ void nouveau_screen_fini(struct nouveau_screen *); -static __inline__ unsigned +static INLINE unsigned RING_3D(unsigned mthd, unsigned size) { return (7 << 13) | (size << 18) | mthd; } -static __inline__ unsigned +static INLINE unsigned RING_3D_NI(unsigned mthd, unsigned size) { return 0x40000000 | (7 << 13) | (size << 18) | mthd; |