/**
  * bnx2i_get_rq_buf - copy RQ buffer contents to driver buffer
- * @conn:              iscsi connection on which RQ event occurred
+ * @bnx2i_conn:                iscsi connection on which RQ event occurred
  * @ptr:               driver buffer to which RQ buffer contents is to
  *                     be copied
  * @len:               length of valid data inside RQ buf
 
 /**
  * bnx2i_put_rq_buf - Replenish RQ buffer, if required ring on chip doorbell
- * @conn:      iscsi connection on which event to post
+ * @bnx2i_conn:        iscsi connection on which event to post
  * @count:     number of RQ buffer being posted to chip
  *
  * No need to ring hardware doorbell for 57710 family of devices
 
 /**
  * bnx2i_ring_sq_dbell - Ring SQ doorbell to wake-up the processing engine
- * @conn:              iscsi connection to which new SQ entries belong
+ * @bnx2i_conn:                iscsi connection to which new SQ entries belong
  * @count:             number of SQ WQEs to post
  *
  * SQ DB is updated in host memory and TX Doorbell is rung for 57710 family
 
 /**
  * bnx2i_ring_dbell_update_sq_params - update SQ driver parameters
- * @conn:      iscsi connection to which new SQ entries belong
+ * @bnx2i_conn:        iscsi connection to which new SQ entries belong
  * @count:     number of SQ WQEs to post
  *
  * this routine will update SQ driver parameters and ring the doorbell
 
 /**
  * bnx2i_send_iscsi_login - post iSCSI login request MP WQE to hardware
- * @conn:      iscsi connection
- * @cmd:       driver command structure which is requesting
- *             a WQE to sent to chip for further processing
+ * @bnx2i_conn:        iscsi connection
+ * @task: transport layer's command structure pointer which is requesting
+ *       a WQE to sent to chip for further processing
  *
  * prepare and post an iSCSI Login request WQE to CNIC firmware
  */
 
 /**
  * bnx2i_send_iscsi_tmf - post iSCSI task management request MP WQE to hardware
- * @conn:      iscsi connection
+ * @bnx2i_conn:        iscsi connection
  * @mtask:     driver command structure which is requesting
  *             a WQE to sent to chip for further processing
  *
 
 /**
  * bnx2i_send_iscsi_text - post iSCSI text WQE to hardware
- * @conn:      iscsi connection
+ * @bnx2i_conn:        iscsi connection
  * @mtask:     driver command structure which is requesting
  *             a WQE to sent to chip for further processing
  *
 
 /**
  * bnx2i_send_iscsi_scsicmd - post iSCSI scsicmd request WQE to hardware
- * @conn:      iscsi connection
+ * @bnx2i_conn:        iscsi connection
  * @cmd:       driver command structure which is requesting
  *             a WQE to sent to chip for further processing
  *
 
 /**
  * bnx2i_send_iscsi_nopout - post iSCSI NOPOUT request WQE to hardware
- * @conn:              iscsi connection
- * @cmd:               driver command structure which is requesting
- *                     a WQE to sent to chip for further processing
+ * @bnx2i_conn:                iscsi connection
+ * @task:              transport layer's command structure pointer which is
+ *                      requesting a WQE to sent to chip for further processing
  * @datap:             payload buffer pointer
  * @data_len:          payload data length
  * @unsol:             indicated whether nopout pdu is unsolicited pdu or
 
 /**
  * bnx2i_send_iscsi_logout - post iSCSI logout request WQE to hardware
- * @conn:      iscsi connection
- * @cmd:       driver command structure which is requesting
- *             a WQE to sent to chip for further processing
+ * @bnx2i_conn:        iscsi connection
+ * @task:      transport layer's command structure pointer which is
+ *             requesting a WQE to sent to chip for further processing
  *
  * prepare and post logout request WQE to CNIC firmware
  */
 
 /**
  * bnx2i_ep_ofld_timer - post iSCSI logout request WQE to hardware
- * @data:      endpoint (transport handle) structure pointer
+ * @t: timer context used to fetch the endpoint (transport
+ *     handle) structure pointer
  *
  * routine to handle connection offload/destroy request timeout
  */
 
 /**
  * bnx2i_unsol_pdu_adjust_rq - makes adjustments to RQ after unsol pdu is recvd
- * @conn:      iscsi connection
+ * @bnx2i_conn:        iscsi connection
  *
  * Firmware advances RQ producer index for every unsolicited PDU even if
  *     payload data length is '0'. This function makes corresponding
 
 /**
  * bnx2i_queue_scsi_cmd_resp - queue cmd completion to the percpu thread
+ * @session:           iscsi session
  * @bnx2i_conn:                bnx2i connection
+ * @cqe:               pointer to newly DMA'ed CQE entry for processing
  *
  * this function is called by generic KCQ handler to queue all pending cmd
  * completion CQEs
 
 /**
  * bnx2i_indicate_kcqe - process iscsi conn update completion KCQE
- * @hba:               adapter structure pointer
- * @update_kcqe:       kcqe pointer
+ * @context:           adapter structure pointer
+ * @kcqe:              kcqe pointer
+ * @num_cqe:           number of kcqes to process
  *
  * Generic KCQ event handler/dispatcher
  */
 
 /**
  * bnx2i_cm_remote_close - process received TCP FIN
- * @hba:               adapter structure pointer
- * @update_kcqe:       kcqe pointer
+ * @cm_sk:     cnic sock structure pointer
  *
  * function callback exported via bnx2i - cnic driver interface to indicate
  *     async TCP events such as FIN
 
 /**
  * bnx2i_cm_remote_abort - process TCP RST and start conn cleanup
- * @hba:               adapter structure pointer
- * @update_kcqe:       kcqe pointer
+ * @cm_sk:     cnic sock structure pointer
  *
  * function callback exported via bnx2i - cnic driver interface to
  *     indicate async TCP events (RST) sent by the peer.
 }
 
 
-/**
+/*
  * bnx2i_cnic_cb - global template of bnx2i - cnic driver interface structure
  *                     carrying callback function pointers
- *
  */
 struct cnic_ulp_ops bnx2i_cnic_cb = {
        .cnic_init = bnx2i_ulp_init,