Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 201111
b: refs/heads/master
c: 5099fa7
h: refs/heads/master
i:
  201109: 08f48b6
  201107: 71b979e
  201103: 8f4982e
v: v3
  • Loading branch information
Alex Deucher authored and Dave Airlie committed Jul 13, 2010
1 parent 5af163f commit 107b99b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ff3f011cd859072b5d6e64c0b968cff9bfdc0b37
refs/heads/master: 5099fa7f23d3711538cbe9fe072b4ce1ba814035
11 changes: 9 additions & 2 deletions trunk/drivers/gpu/drm/radeon/radeon_atombios.c
Original file line number Diff line number Diff line change
Expand Up @@ -1029,8 +1029,15 @@ bool radeon_atombios_sideport_present(struct radeon_device *rdev)
data_offset);
switch (crev) {
case 1:
if (igp_info->info.ucMemoryType & 0xf0)
return true;
/* AMD IGPS */
if ((rdev->family == CHIP_RS690) ||
(rdev->family == CHIP_RS740)) {
if (igp_info->info.ulBootUpMemoryClock)
return true;
} else {
if (igp_info->info.ucMemoryType & 0xf0)
return true;
}
break;
case 2:
if (igp_info->info_2.ucMemoryType & 0x0f)
Expand Down

0 comments on commit 107b99b

Please sign in to comment.