Index: /trunk/src/VBox/Devices/Audio/DevHDA.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DevHDA.cpp	(revision 68388)
+++ /trunk/src/VBox/Devices/Audio/DevHDA.cpp	(revision 68389)
@@ -1971,6 +1971,5 @@
         }
 
-        /* Include the driver's LUN in the stream name for easier identification. */
-        RTStrPrintf(pStreamCfg->szName, RT_ELEMENTS(pStreamCfg->szName), "[LUN#%RU8] %s", pDrv->uLUN, pCfg->szName);
+        RTStrPrintf(pStreamCfg->szName, RT_ELEMENTS(pStreamCfg->szName), "%s", pCfg->szName);
 
         if (pStreamCfg->enmDir == PDMAUDIODIR_IN)
Index: /trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DevIchAc97.cpp	(revision 68388)
+++ /trunk/src/VBox/Devices/Audio/DevIchAc97.cpp	(revision 68389)
@@ -1463,5 +1463,5 @@
         }
 
-        if (!RTStrPrintf(pStreamCfg->szName, sizeof(pStreamCfg->szName), "[LUN#%RU8] %s", pDrv->uLUN, pCfg->szName))
+        if (!RTStrPrintf(pStreamCfg->szName, sizeof(pStreamCfg->szName), "%s", pCfg->szName))
         {
             RTMemFree(pStreamCfg);
@@ -1471,5 +1471,5 @@
         }
 
-        LogFunc(("%s\n", pStreamCfg->szName));
+        LogFunc(("[LUN#%RU8] %s\n", pDrv->uLUN, pStreamCfg->szName));
 
         int rc2 = VINF_SUCCESS;
Index: /trunk/src/VBox/Devices/Audio/DevSB16.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DevSB16.cpp	(revision 68388)
+++ /trunk/src/VBox/Devices/Audio/DevSB16.cpp	(revision 68389)
@@ -2172,5 +2172,5 @@
     CfgHost.Props.cShift    = PDMAUDIOPCMPROPS_MAKE_SHIFT_PARMS(CfgHost.Props.cBits, CfgHost.Props.cChannels);
 
-    RTStrPrintf(CfgHost.szName, sizeof(CfgHost.szName), "sb16.po");
+    RTStrPrintf(CfgHost.szName, sizeof(CfgHost.szName), "Output");
 
     uint8_t uLUN = 0;
@@ -2181,7 +2181,5 @@
     RTListForEach(&pThis->lstDrv, pDrv, SB16DRIVER, Node)
     {
-        if (!RTStrPrintf(pCfg->szName, sizeof(pCfg->szName), "[LUN#%RU8] %s (%RU32Hz, %RU8 %s)",
-                         pDrv->uLUN, CfgHost.szName,
-                         pCfg->Props.uHz, pCfg->Props.cChannels, pCfg->Props.cChannels > 1 ? "Channels" : "Channel"))
+        if (!RTStrPrintf(pCfg->szName, sizeof(pCfg->szName), "%s", CfgHost.szName))
         {
             rc = VERR_BUFFER_OVERFLOW;
