aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2010-05-24 23:48:07 -0400
committerBen Skeggs <bskeggs@redhat.com>2010-05-28 02:06:32 -0400
commitf50c0b91e7718e7deda46475cfd0ea1413daed04 (patch)
tree7df09bc8151b8a3c0167f125e208f2405780ac1c /drivers
parentd13102c6b4836289138431e3fbfc08e90c925ffd (diff)
drm/nv40: allow cold-booting of nv4x chipsets
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_bios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c
index 61d93226135..620cbd9767c 100644
--- a/drivers/gpu/drm/nouveau/nouveau_bios.c
+++ b/drivers/gpu/drm/nouveau/nouveau_bios.c
@@ -6265,7 +6265,7 @@ nouveau_bios_init(struct drm_device *dev)
6265 /* ... unless card isn't POSTed already */ 6265 /* ... unless card isn't POSTed already */
6266 if (!nouveau_bios_posted(dev)) { 6266 if (!nouveau_bios_posted(dev)) {
6267 NV_INFO(dev, "Adaptor not initialised\n"); 6267 NV_INFO(dev, "Adaptor not initialised\n");
6268 if (dev_priv->card_type < NV_50) { 6268 if (dev_priv->card_type < NV_40) {
6269 NV_ERROR(dev, "Unable to POST this chipset\n"); 6269 NV_ERROR(dev, "Unable to POST this chipset\n");
6270 return -ENODEV; 6270 return -ENODEV;
6271 } 6271 }