diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2010-10-20 03:46:38 +0200 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2010-12-03 06:07:00 +0100 |
commit | 3052be2cea64371300a0338d3ca5d3575fbd109c (patch) | |
tree | 176a5054691aec17bb064ecfbe6abc2e93da8311 /drivers/gpu/drm/nouveau/nv50_graph.c | |
parent | drm/nv84: add support for the PCRYPT engine (diff) | |
download | linux-3052be2cea64371300a0338d3ca5d3575fbd109c.tar.xz linux-3052be2cea64371300a0338d3ca5d3575fbd109c.zip |
drm/nv50: remove excessive alignment of graph/crypt contexts
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv50_graph.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nv50_graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_graph.c b/drivers/gpu/drm/nouveau/nv50_graph.c index 84ca90e91811..a764af52a3ba 100644 --- a/drivers/gpu/drm/nouveau/nv50_graph.c +++ b/drivers/gpu/drm/nouveau/nv50_graph.c @@ -216,7 +216,7 @@ nv50_graph_create_context(struct nouveau_channel *chan) NV_DEBUG(dev, "ch%d\n", chan->id); - ret = nouveau_gpuobj_new(dev, chan, pgraph->grctx_size, 0x1000, + ret = nouveau_gpuobj_new(dev, chan, pgraph->grctx_size, 0, NVOBJ_FLAG_ZERO_ALLOC | NVOBJ_FLAG_ZERO_FREE, &chan->ramin_grctx); if (ret) |