summaryrefslogtreecommitdiff
path: root/shared-core/nouveau_state.c
diff options
context:
space:
mode:
authorStephane Marchesin <marchesin@icps.u-strasbg.fr>2007-02-03 06:00:29 +0100
committerStephane Marchesin <marchesin@icps.u-strasbg.fr>2007-02-03 06:00:29 +0100
commit0c13657c33f282233b9f4bb397acb99c4cd65919 (patch)
tree5541d06512318d365bae5d8f8cd69d944f534bf1 /shared-core/nouveau_state.c
parent7ab9e7f36f5fb58652f915a0839a167c6206743a (diff)
nouveau: plugin the nv04 graph init function.
Diffstat (limited to 'shared-core/nouveau_state.c')
-rw-r--r--shared-core/nouveau_state.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared-core/nouveau_state.c b/shared-core/nouveau_state.c
index a45c48e9..f1f272e7 100644
--- a/shared-core/nouveau_state.c
+++ b/shared-core/nouveau_state.c
@@ -108,6 +108,8 @@ int nouveau_firstopen(struct drm_device *dev)
nv20_graph_init(dev);
else if (dev_priv->card_type >= NV_10)
nv10_graph_init(dev);
+ else if (dev_priv->card_type >= NV_04)
+ nv04_graph_init(dev);
return 0;
}