EndpointData->EndpointAddress, EndpointData->EndpointSize, PIPE_BANK_SINGLE);\r
 \r
        Pipe_SetInfiniteINRequests();\r
-\r
-       #if defined(INTERRUPT_DATA_PIPE)\r
-       Pipe_SetInterruptPeriod(EndpointData->PollingIntervalMS);\r
-\r
-       /* Enable the pipe IN interrupt for the data pipe */\r
-       USB_INT_Enable(PIPE_INT_IN);    \r
-       #endif\r
                        \r
        /* Valid data found, return success */\r
        return SuccessfulConfigRead;\r
        {\r
                /* Check the HID descriptor class and protocol, break out if correct class/protocol interface found */\r
                if ((DESCRIPTOR_CAST(CurrentDescriptor, USB_Descriptor_Interface_t).Class    == KEYBOARD_CLASS) &&\r
-                   (DESCRIPTOR_CAST(CurrentDescriptor, USB_Descriptor_Interface_t).Subclass == KEYBOARD_SUBCLASS))\r
+                   (DESCRIPTOR_CAST(CurrentDescriptor, USB_Descriptor_Interface_t).Protocol == KEYBOARD_PROTOCOL))\r
                {\r
                        return DESCRIPTOR_SEARCH_Found;\r
                }\r
        }\r
        \r
-       return Descriptor_Search_NotFound;\r
+       return DESCRIPTOR_SEARCH_NotFound;\r
 }\r
 \r
 /** Descriptor comparator function. This comparator function is can be called while processing an attached USB device's\r