summaryrefslogtreecommitdiff
path: root/shared-core/nouveau_fifo.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@ppcg5.localdomain>2006-11-06 11:42:15 +1100
committerDave Airlie <airlied@ppcg5.localdomain>2006-11-06 11:42:15 +1100
commit2dd3c039fdbe86db4043abcc69babf768edb3ab8 (patch)
tree5414a2a34ce27548136fa3c99d09d660f9f31105 /shared-core/nouveau_fifo.c
parent5e55594061b24521551c45838fbe6c3df57050d1 (diff)
fixup fifo size so it is page aligned
Diffstat (limited to 'shared-core/nouveau_fifo.c')
-rw-r--r--shared-core/nouveau_fifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-core/nouveau_fifo.c b/shared-core/nouveau_fifo.c
index 5c328668..cf389647 100644
--- a/shared-core/nouveau_fifo.c
+++ b/shared-core/nouveau_fifo.c
@@ -138,7 +138,7 @@ static int nouveau_dma_init(struct drm_device *dev)
drm_nouveau_private_t *dev_priv = dev->dev_private;
struct nouveau_config *config = &dev_priv->config;
struct mem_block *cb;
- int cb_min_size = nouveau_fifo_number(dev) * NV03_FIFO_SIZE;
+ int cb_min_size = nouveau_fifo_number(dev) * max(NV03_FIFO_SIZE,PAGE_SIZE);
/* XXX this should be done earlier on init */
nouveau_hash_table_init(dev);