[haiku-commits] haiku.r1alpha4: hrevr1alpha4-44640 - src/add-ons/kernel/drivers/graphics/radeon_hd

  • From: kallisti5@xxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 21 Oct 2012 16:14:25 +0200 (CEST)

hrevr1alpha4-44640 adds 1 changeset to branch 'r1alpha4'
old head: 763a28de446b6808f2ea69ebd80f10c8ebc630c2
new head: 10a2b5eea6c312001aefc67904828355b3ca13c0

----------------------------------------------------------------------------

10a2b5e: radeon_hd: Re-enable Palm cards for R1A4
  
  * This is a release branch *only* change!
  * Sumo are the only APU's with DP-only bridges
  * While Palm *may* have DP bridges, it's not
    a requirement.
  * Palm chipsets with DP bridges will need to
    boot vesa and remove radeon_hd for now.
  * Fixes #9043

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrevr1alpha4-44640
Commit:      10a2b5eea6c312001aefc67904828355b3ca13c0
URL:         http://cgit.haiku-os.org/haiku/commit/?id=10a2b5e
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sun Oct 21 14:11:34 2012 UTC

Ticket:      https://dev.haiku-os.org/ticket/9043

----------------------------------------------------------------------------

1 file changed, 5 insertions(+), 5 deletions(-)
.../kernel/drivers/graphics/radeon_hd/driver.cpp   |   10 +++++-----

----------------------------------------------------------------------------

diff --git a/src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp 
b/src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp
index c8900be..508f409 100644
--- a/src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp
+++ b/src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp
@@ -189,11 +189,6 @@ const struct supported_device {
        {0x689c, 4, 0, RADEON_HEMLOCK, CHIP_STD, "Radeon HD 5900"},
 
        // Fusion APUS
-       /* R1A4 branch change: Disable APU's as external Display
-     * Port bridges don't yet function. Users of these cards
-     * will see only a black screen at boot.
-     */
-       #if 0
        //  Palm
        {0x9804, 4, 1, RADEON_PALM, CHIP_APU, "Radeon HD 6250"},
        {0x9805, 4, 1, RADEON_PALM, CHIP_APU, "Radeon HD 6290"},
@@ -201,6 +196,11 @@ const struct supported_device {
        {0x9802, 4, 1, RADEON_PALM, CHIP_APU, "Radeon HD 6310"},
        {0x9803, 4, 1, RADEON_PALM, CHIP_APU, "Radeon HD 6310"},
        {0x9806, 4, 1, RADEON_PALM, CHIP_APU, "Radeon HD 6320"},
+       /* R1A4 branch change: Disable APU's as external Display
+        * Port bridges don't yet function. Users of these cards
+        * will see only a black screen at boot.
+        */
+       #if 0
        //  Sumo (no VGA / LVDS!, only DP)
        {0x9640, 4, 1, RADEON_SUMO, CHIP_APU, "Radeon HD 6550D"},
        {0x9641, 4, 1, RADEON_SUMO, CHIP_APU, "Radeon HD SUMO M"},


Other related posts:

  • » [haiku-commits] haiku.r1alpha4: hrevr1alpha4-44640 - src/add-ons/kernel/drivers/graphics/radeon_hd - kallisti5