diff options
Diffstat (limited to 'drivers/gpu/drm/radeon/r600.c')
-rw-r--r-- | drivers/gpu/drm/radeon/r600.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c index 797a36f9a0f4..3dbd93e44345 100644 --- a/drivers/gpu/drm/radeon/r600.c +++ b/drivers/gpu/drm/radeon/r600.c | |||
@@ -1631,7 +1631,11 @@ int r600_init(struct radeon_device *rdev) | |||
1631 | if (r) | 1631 | if (r) |
1632 | return r; | 1632 | return r; |
1633 | /* Post card if necessary */ | 1633 | /* Post card if necessary */ |
1634 | if (!r600_card_posted(rdev) && rdev->bios) { | 1634 | if (!r600_card_posted(rdev)) { |
1635 | if (!rdev->bios) { | ||
1636 | dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n"); | ||
1637 | return -EINVAL; | ||
1638 | } | ||
1635 | DRM_INFO("GPU not posted. posting now...\n"); | 1639 | DRM_INFO("GPU not posted. posting now...\n"); |
1636 | atom_asic_init(rdev->mode_info.atom_context); | 1640 | atom_asic_init(rdev->mode_info.atom_context); |
1637 | } | 1641 | } |