Changeset 51237 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- May 12, 2014 4:03:19 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r51217 r51237 6805 6805 pThis->pMediaNotify = PDMIBASE_QUERY_INTERFACE(pBase, PDMIMEDIANOTIFY); 6806 6806 } 6807 else if (rc != VERR_PDM_NO_ATTACHED_DRIVER) 6807 else if (rc == VERR_PDM_NO_ATTACHED_DRIVER) 6808 { 6809 Log(("%s/%d: warning: no driver attached to LUN #0!\n", pDevIns->pReg->szName, pDevIns->iInstance)); 6810 rc = VINF_SUCCESS; 6811 } 6812 else 6808 6813 { 6809 6814 AssertMsgFailed(("Failed to attach to status driver. rc=%Rrc\n", rc)); 6810 r eturn PDMDEV_SET_ERROR(pDevIns, rc, N_("AHCIcannot attach to status driver"));6815 rc = PDMDEV_SET_ERROR(pDevIns, rc, N_("VGA cannot attach to status driver")); 6811 6816 } 6812 6817 }
Note:
See TracChangeset
for help on using the changeset viewer.