Index: /trunk/src/VBox/Devices/Graphics/DevVGA.cpp
===================================================================
--- /trunk/src/VBox/Devices/Graphics/DevVGA.cpp	(revision 51236)
+++ /trunk/src/VBox/Devices/Graphics/DevVGA.cpp	(revision 51237)
@@ -6805,8 +6805,13 @@
             pThis->pMediaNotify = PDMIBASE_QUERY_INTERFACE(pBase, PDMIMEDIANOTIFY);
         }
-        else if (rc != VERR_PDM_NO_ATTACHED_DRIVER)
+        else if (rc == VERR_PDM_NO_ATTACHED_DRIVER)
+        {
+            Log(("%s/%d: warning: no driver attached to LUN #0!\n", pDevIns->pReg->szName, pDevIns->iInstance));
+            rc = VINF_SUCCESS;
+        }
+        else
         {
             AssertMsgFailed(("Failed to attach to status driver. rc=%Rrc\n", rc));
-            return PDMDEV_SET_ERROR(pDevIns, rc, N_("AHCI cannot attach to status driver"));
+            rc = PDMDEV_SET_ERROR(pDevIns, rc, N_("VGA cannot attach to status driver"));
         }
     }
