diff --git a/src/add-ons/accelerants/radeon_hd/connector.cpp b/src/add-ons/accelerants/radeon_hd/connector.cpp
index bd5de57841..20be1d249d 100644
a
|
b
|
connector_probe()
|
747 | 747 | radeon_shared_info &info = *gInfo->shared_info; |
748 | 748 | |
749 | 749 | uint16 igpLaneInfo; |
750 | | if ((info.chipsetFlags & CHIP_IGP) != 0) { |
| 750 | if (connectorObjectID >= B_COUNT_OF(kConnectorConvert)) { |
| 751 | igpLaneInfo = 0; |
| 752 | connectorType = VIDEO_CONNECTOR_UNKNOWN; |
| 753 | } else if ((info.chipsetFlags & CHIP_IGP) != 0) { |
751 | 754 | ERROR("%s: TODO: IGP chip connector detection\n", __func__); |
752 | 755 | // try non-IGP method for now |
753 | 756 | igpLaneInfo = 0; |