drm/nv50: fix evo instmem alignment
Not an issue right now, we're forced to 64k size/alignment by the BO allocator anyway. This won't be the case soon. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
97e2000f75
commit
8888cb18ff
|
@ -234,7 +234,7 @@ nv50_evo_create(struct drm_device *dev)
|
||||||
* use this also as there's no per-channel support on the
|
* use this also as there's no per-channel support on the
|
||||||
* hardware
|
* hardware
|
||||||
*/
|
*/
|
||||||
ret = nouveau_gpuobj_new(dev, NULL, 32768, 0x1000,
|
ret = nouveau_gpuobj_new(dev, NULL, 32768, 65536,
|
||||||
NVOBJ_FLAG_ZERO_ALLOC, &evo->ramin);
|
NVOBJ_FLAG_ZERO_ALLOC, &evo->ramin);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
NV_ERROR(dev, "Error allocating EVO channel memory: %d\n", ret);
|
NV_ERROR(dev, "Error allocating EVO channel memory: %d\n", ret);
|
||||||
|
|
Loading…
Reference in New Issue