int i;
        ips_ha_t *ha;
        ips_scb_t *scb;
-       ips_copp_wait_item_t *item;
 
        METHOD_TRACE("ips_eh_reset", 1);
 
        if (!ha->active)
                return (FAILED);
 
-       /* See if the command is on the copp queue */
-       item = ha->copp_waitlist.head;
-       while ((item) && (item->scsi_cmd != SC))
-               item = item->next;
-
-       if (item) {
-               /* Found it */
-               ips_removeq_copp(&ha->copp_waitlist, item);
-               return (SUCCESS);
-       }
-
-       /* See if the command is on the wait queue */
-       if (ips_removeq_wait(&ha->scb_waitlist, SC)) {
-               /* command not sent yet */
-               return (SUCCESS);
-       }
-
        /* An explanation for the casual observer:                              */
        /* Part of the function of a RAID controller is automatic error         */
        /* detection and recovery.  As such, the only problem that physically   */