*     bit cleared) so that the HW will skip over them.
  */
 static void xhci_handle_cmd_stop_ep(struct xhci_hcd *xhci, int slot_id,
-               union xhci_trb *trb, struct xhci_event_cmd *event)
+               union xhci_trb *trb)
 {
        unsigned int ep_index;
        struct xhci_ring *ep_ring;
 }
 
 static void xhci_handle_cmd_config_ep(struct xhci_hcd *xhci, int slot_id,
-               struct xhci_event_cmd *event, u32 cmd_comp_code)
+               u32 cmd_comp_code)
 {
        struct xhci_virt_device *virt_dev;
        struct xhci_input_control_ctx *ctrl_ctx;
        trace_xhci_handle_cmd_addr_dev(slot_ctx);
 }
 
-static void xhci_handle_cmd_reset_dev(struct xhci_hcd *xhci, int slot_id,
-               struct xhci_event_cmd *event)
+static void xhci_handle_cmd_reset_dev(struct xhci_hcd *xhci, int slot_id)
 {
        struct xhci_virt_device *vdev;
        struct xhci_slot_ctx *slot_ctx;
                break;
        case TRB_CONFIG_EP:
                if (!cmd->completion)
-                       xhci_handle_cmd_config_ep(xhci, slot_id, event,
-                                                 cmd_comp_code);
+                       xhci_handle_cmd_config_ep(xhci, slot_id, cmd_comp_code);
                break;
        case TRB_EVAL_CONTEXT:
                break;
                WARN_ON(slot_id != TRB_TO_SLOT_ID(
                                le32_to_cpu(cmd_trb->generic.field[3])));
                if (!cmd->completion)
-                       xhci_handle_cmd_stop_ep(xhci, slot_id, cmd_trb, event);
+                       xhci_handle_cmd_stop_ep(xhci, slot_id, cmd_trb);
                break;
        case TRB_SET_DEQ:
                WARN_ON(slot_id != TRB_TO_SLOT_ID(
                 */
                slot_id = TRB_TO_SLOT_ID(
                                le32_to_cpu(cmd_trb->generic.field[3]));
-               xhci_handle_cmd_reset_dev(xhci, slot_id, event);
+               xhci_handle_cmd_reset_dev(xhci, slot_id);
                break;
        case TRB_NEC_GET_FW:
                xhci_handle_cmd_nec_get_fw(xhci, event);