diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2012-04-19 21:54:33 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2012-05-24 02:31:58 -0400 |
commit | d58086deaa32dc5e630aab222851b282f77e00bb (patch) | |
tree | 2fab5eec82dcc5fa89d7d4e876cc6e561a30cc53 /drivers/gpu/drm/nouveau/nouveau_grctx.h | |
parent | a8f81837c506aba186b42f0c67633e85851395b1 (diff) |
drm/nv40-50/gr: restructure grctx/prog generation
The conditional definition of the generation helper functions apparently
confuses some IDEs....
Reported-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_grctx.h')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_grctx.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_grctx.h b/drivers/gpu/drm/nouveau/nouveau_grctx.h index 86c2e374e938..b0795ececbda 100644 --- a/drivers/gpu/drm/nouveau/nouveau_grctx.h +++ b/drivers/gpu/drm/nouveau/nouveau_grctx.h | |||
@@ -18,7 +18,6 @@ struct nouveau_grctx { | |||
18 | uint32_t ctxvals_base; | 18 | uint32_t ctxvals_base; |
19 | }; | 19 | }; |
20 | 20 | ||
21 | #ifdef CP_CTX | ||
22 | static inline void | 21 | static inline void |
23 | cp_out(struct nouveau_grctx *ctx, uint32_t inst) | 22 | cp_out(struct nouveau_grctx *ctx, uint32_t inst) |
24 | { | 23 | { |
@@ -88,10 +87,8 @@ _cp_bra(struct nouveau_grctx *ctx, u32 mod, int flag, int state, int name) | |||
88 | (state ? 0 : CP_BRA_IF_CLEAR)); | 87 | (state ? 0 : CP_BRA_IF_CLEAR)); |
89 | } | 88 | } |
90 | #define cp_bra(c, f, s, n) _cp_bra((c), 0, CP_FLAG_##f, CP_FLAG_##f##_##s, n) | 89 | #define cp_bra(c, f, s, n) _cp_bra((c), 0, CP_FLAG_##f, CP_FLAG_##f##_##s, n) |
91 | #ifdef CP_BRA_MOD | ||
92 | #define cp_cal(c, f, s, n) _cp_bra((c), 1, CP_FLAG_##f, CP_FLAG_##f##_##s, n) | 90 | #define cp_cal(c, f, s, n) _cp_bra((c), 1, CP_FLAG_##f, CP_FLAG_##f##_##s, n) |
93 | #define cp_ret(c, f, s) _cp_bra((c), 2, CP_FLAG_##f, CP_FLAG_##f##_##s, 0) | 91 | #define cp_ret(c, f, s) _cp_bra((c), 2, CP_FLAG_##f, CP_FLAG_##f##_##s, 0) |
94 | #endif | ||
95 | 92 | ||
96 | static inline void | 93 | static inline void |
97 | _cp_wait(struct nouveau_grctx *ctx, int flag, int state) | 94 | _cp_wait(struct nouveau_grctx *ctx, int flag, int state) |
@@ -128,6 +125,5 @@ gr_def(struct nouveau_grctx *ctx, uint32_t reg, uint32_t val) | |||
128 | 125 | ||
129 | nv_wo32(ctx->data, reg * 4, val); | 126 | nv_wo32(ctx->data, reg * 4, val); |
130 | } | 127 | } |
131 | #endif | ||
132 | 128 | ||
133 | #endif | 129 | #endif |