summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nv50/nv50_transfer.c
diff options
context:
space:
mode:
authorChristoph Bumiller <[email protected]>2011-08-26 22:59:19 +0200
committerChristoph Bumiller <[email protected]>2011-09-14 16:19:51 +0200
commit150bb0fb34b74055c7dd6d2925ce9c5a1d7decf5 (patch)
tree3c9032e6abcd37de542ded4da1be8ccc32029541 /src/gallium/drivers/nv50/nv50_transfer.c
parentec22b75be1c57f991f48bf6cc1d4b910911e8bf2 (diff)
nouveau: make data argument of nouveau_context::push_data const
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_transfer.c')
-rw-r--r--src/gallium/drivers/nv50/nv50_transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_transfer.c b/src/gallium/drivers/nv50/nv50_transfer.c
index 0ff79eb908a..c86c417c071 100644
--- a/src/gallium/drivers/nv50/nv50_transfer.c
+++ b/src/gallium/drivers/nv50/nv50_transfer.c
@@ -140,7 +140,7 @@ nv50_m2mf_transfer_rect(struct pipe_screen *pscreen,
void
nv50_sifc_linear_u8(struct nouveau_context *nv,
struct nouveau_bo *dst, unsigned offset, unsigned domain,
- unsigned size, void *data)
+ unsigned size, const void *data)
{
struct nouveau_channel *chan = nv->screen->channel;
uint32_t *src = (uint32_t *)data;