diff --git a/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c b/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
index 8ef07f1c3327e14ffec33e3d968f4c4b8d414e18..c46bb5d0175c2653ecec612eb00f2fca757cd8c9 100644
--- a/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
+++ b/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
@@ -137,7 +137,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
 }
 
 /** Event handler for the library USB Unhandled Control Request event. */
-void EVENT_USB_Device_UnhandledControlPacket(void)
+void EVENT_USB_Device_UnhandledControlRequest(void)
 {
 	CDC_Device_ProcessControlRequest(&VirtualSerial_CDC_Interface);
 }
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt
index de2fa810c051df3c00688db169643ff55214301e..11c21f0249d7c64c400dbab4f144b890048d2e5a 100644
--- a/LUFA/ManPages/ChangeLog.txt
+++ b/LUFA/ManPages/ChangeLog.txt
@@ -26,6 +26,9 @@
   *  - Fixed swapped paremeters in the HID state memory copy call while processing a HID PUSH item in the HID report parser
   *  - Fixed memory corruption HID report parser when too many COLLECTION or PUSH items were processed
   *  - Fixed HID report parser not resetting the FEATURE item count when a REPORT ID item is encountered
+  *  - Fixed USBtoSerial demos not reading in UDR1 when the USART receives data but the USB interface is not enumerated,
+  *    causing continuous USART receive interrupts
+  *  - Fixed misspelt event name in the Class driver USBtoSerial demo, preventing correct operation
   *
   *
   *  \section Sec_ChangeLog090810 Version 090810