Index: /trunk/include/VBox/err.h
===================================================================
--- /trunk/include/VBox/err.h	(revision 53766)
+++ /trunk/include/VBox/err.h	(revision 53767)
@@ -2167,9 +2167,9 @@
 /** @} */
 
-/** @name VBox CPU hotplug Status codes
+/** @name VBox VMMDev Status codes
  * @{
  */
 /** CPU hotplug events from VMMDev are not monitored by the guest. */
-#define VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST    (-4700)
+#define VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST      (-4700)
 /** @} */
 
Index: /trunk/include/VBox/err.mac
===================================================================
--- /trunk/include/VBox/err.mac	(revision 53766)
+++ /trunk/include/VBox/err.mac	(revision 53767)
@@ -807,5 +807,5 @@
 %define VERR_COM_OBJECT_IN_USE    (VERR_COM_VBOX_LOWEST + 12)
 %define VERR_COM_DONT_CALL_AGAIN    (VERR_COM_VBOX_LOWEST + 13)
-%define VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST    (-4700)
+%define VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST    (-4700)
 %define VINF_AIO_TASK_PENDING    4800
 %define VERR_VSCSI_LUN_TYPE_NOT_SUPPORTED    (-4900)
Index: /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
===================================================================
--- /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp	(revision 53766)
+++ /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp	(revision 53767)
@@ -3322,5 +3322,5 @@
     }
     else
-        rc = VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;
+        rc = VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;
 
     PDMCritSectLeave(&pThis->CritSect);
@@ -3348,5 +3348,5 @@
     }
     else
-        rc = VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;
+        rc = VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST;
 
     PDMCritSectLeave(&pThis->CritSect);
Index: /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 53766)
+++ /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 53767)
@@ -2355,5 +2355,5 @@
             } while (cTries-- > 0);
         }
-        else if (vrc == VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST)
+        else if (vrc == VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST)
         {
             /* Query one time. It is possible that the user ejected the CPU. */
