Index: /trunk/src/VBox/Devices/testcase/tstDevice.cpp
===================================================================
--- /trunk/src/VBox/Devices/testcase/tstDevice.cpp	(revision 69304)
+++ /trunk/src/VBox/Devices/testcase/tstDevice.cpp	(revision 69305)
@@ -40,4 +40,5 @@
 #include "tstDeviceInternal.h"
 
+
 /*********************************************************************************************************************************
 *   Defined Constants And Macros                                                                                                 *
@@ -189,4 +190,5 @@
 } TSTDEVPDMR0IMPORTS;
 typedef const TSTDEVPDMR0IMPORTS *PCTSTDEVPDMR0IMPORTS;
+
 
 /*********************************************************************************************************************************
@@ -695,5 +697,5 @@
 
 /**
- * Loads the given 
+ * Loads the given
  */
 static int tstDevPdmLoadR3Mod(PTSTDEVPDMMOD pMod)
Index: /trunk/src/VBox/Devices/testcase/tstDeviceInternal.h
===================================================================
--- /trunk/src/VBox/Devices/testcase/tstDeviceInternal.h	(revision 69304)
+++ /trunk/src/VBox/Devices/testcase/tstDeviceInternal.h	(revision 69305)
@@ -13,13 +13,4 @@
  * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
  * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
- *
- * The contents of this file may alternatively be used under the terms
- * of the Common Development and Distribution License Version 1.0
- * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
- * VirtualBox OSE distribution, in which case the provisions of the
- * CDDL are applicable instead of those of the GPL.
- *
- * You may elect to license modified versions of this file under the
- * terms and conditions of either the GPL or the CDDL or both.
  */
 
Index: /trunk/src/VBox/Devices/testcase/tstDevicePdmDevHlp.cpp
===================================================================
--- /trunk/src/VBox/Devices/testcase/tstDevicePdmDevHlp.cpp	(revision 69304)
+++ /trunk/src/VBox/Devices/testcase/tstDevicePdmDevHlp.cpp	(revision 69305)
@@ -29,4 +29,5 @@
 
 #include "tstDeviceInternal.h"
+
 
 /*********************************************************************************************************************************
@@ -75,5 +76,5 @@
              pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pfnOut, pfnIn, pfnOutStr, pfnInStr, pszDesc, pszDesc));
 
-    /** @todo: Verify there is no overlapping. */
+    /** @todo Verify there is no overlapping. */
 
     RT_NOREF(pszDesc);
@@ -105,5 +106,5 @@
 {
     PDMDEV_ASSERT_DEVINS(pDevIns);
-    LogFlow(("pdmR3DevHlp_IOPortRegisterRC: caller='%s'/%d: Port=%#x cPorts=%#x pvUser=%p pszOut=%p:{%s} pszIn=%p:{%s} pszOutStr=%p:{%s} pszInStr=%p:{%s} pszDesc=%p:{%s}\n", 
+    LogFlow(("pdmR3DevHlp_IOPortRegisterRC: caller='%s'/%d: Port=%#x cPorts=%#x pvUser=%p pszOut=%p:{%s} pszIn=%p:{%s} pszOutStr=%p:{%s} pszInStr=%p:{%s} pszDesc=%p:{%s}\n",
              pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pszOut, pszOut, pszIn, pszIn, pszOutStr, pszOutStr, pszInStr, pszInStr, pszDesc, pszDesc));
 
@@ -123,5 +124,5 @@
 {
     PDMDEV_ASSERT_DEVINS(pDevIns);
-    LogFlow(("pdmR3DevHlp_IOPortRegisterR0: caller='%s'/%d: Port=%#x cPorts=%#x pvUser=%p pszOut=%p:{%s} pszIn=%p:{%s} pszOutStr=%p:{%s} pszInStr=%p:{%s} pszDesc=%p:{%s}\n", 
+    LogFlow(("pdmR3DevHlp_IOPortRegisterR0: caller='%s'/%d: Port=%#x cPorts=%#x pvUser=%p pszOut=%p:{%s} pszIn=%p:{%s} pszOutStr=%p:{%s} pszInStr=%p:{%s} pszDesc=%p:{%s}\n",
              pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pszOut, pszOut, pszIn, pszIn, pszOutStr, pszOutStr, pszInStr, pszInStr, pszDesc, pszDesc));
 
@@ -131,5 +132,5 @@
     RTListForEach(&pThis->LstIoPorts, pIoPort, RTDEVDUTIOPORT, NdIoPorts)
     {
-        /** @todo: Support overlapping port ranges. */
+        /** @todo Support overlapping port ranges. */
         if (   pIoPort->PortStart == Port
             && pIoPort->cPorts == cPorts)
@@ -1219,5 +1220,5 @@
              pDevIns->pReg->szName, pDevIns->iInstance, pCritSect));
 
-    /** @todo: Implement default atomatic critical section. */
+    /** @todo Implement default atomatic critical section. */
     pDevIns->pCritSectRoR3 = pCritSect;
 
Index: /trunk/src/VBox/Devices/testcase/tstDevicePlugin.h
===================================================================
--- /trunk/src/VBox/Devices/testcase/tstDevicePlugin.h	(revision 69304)
+++ /trunk/src/VBox/Devices/testcase/tstDevicePlugin.h	(revision 69305)
@@ -13,13 +13,4 @@
  * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
  * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
- *
- * The contents of this file may alternatively be used under the terms
- * of the Common Development and Distribution License Version 1.0
- * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
- * VirtualBox OSE distribution, in which case the provisions of the
- * CDDL are applicable instead of those of the GPL.
- *
- * You may elect to license modified versions of this file under the
- * terms and conditions of either the GPL or the CDDL or both.
  */
 
Index: /trunk/src/VBox/Devices/testcase/tstDeviceSUP.cpp
===================================================================
--- /trunk/src/VBox/Devices/testcase/tstDeviceSUP.cpp	(revision 69304)
+++ /trunk/src/VBox/Devices/testcase/tstDeviceSUP.cpp	(revision 69305)
@@ -27,4 +27,5 @@
 
 #include "tstDeviceInternal.h"
+
 
 /*********************************************************************************************************************************
Index: /trunk/src/VBox/Devices/testcase/tstDeviceVMM.cpp
===================================================================
--- /trunk/src/VBox/Devices/testcase/tstDeviceVMM.cpp	(revision 69304)
+++ /trunk/src/VBox/Devices/testcase/tstDeviceVMM.cpp	(revision 69305)
@@ -29,4 +29,5 @@
 #include "tstDeviceInternal.h"
 
+
 /*********************************************************************************************************************************
 *   Defined Constants And Macros                                                                                                 *
@@ -37,4 +38,5 @@
 /** Frequency of the virtual clock. */
 #define TMCLOCK_FREQ_VIRTUAL    UINT32_C(1000000000)
+
 
 /*********************************************************************************************************************************
Index: /trunk/src/VBox/Devices/testcase/tstDeviceVMMStubs.cpp
===================================================================
--- /trunk/src/VBox/Devices/testcase/tstDeviceVMMStubs.cpp	(revision 69304)
+++ /trunk/src/VBox/Devices/testcase/tstDeviceVMMStubs.cpp	(revision 69305)
@@ -21,4 +21,5 @@
  */
 
+
 /*********************************************************************************************************************************
 *   Header Files                                                                                                                 *
@@ -32,4 +33,5 @@
 
 #include "tstDeviceVMMInternal.h"
+
 
 /*********************************************************************************************************************************
@@ -789,5 +791,5 @@
 }
 
-/** @todo: PDMR3AsyncCompletion + BlkCache + CritSect + QueryLun + Thread. */
+/** @todo PDMR3AsyncCompletion + BlkCache + CritSect + QueryLun + Thread. */
 
 /**
@@ -988,4 +990,2 @@
 }
 
-
-
