scsi: remove description for spdk_scsi_lun

The existing description was written long ago and is
not even close to being valid now.

Signed-off-by: Jim Harris <james.r.harris@intel.com>
Change-Id: I758da93bfbffc2edb28b7d421b5f061cbd893a39

Reviewed-on: https://review.gerrithub.io/393692
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: <shuhei.matsumoto.xt@hitachi.com>
This commit is contained in:
Jim Harris 2018-01-04 11:53:33 -07:00
parent 683eeb59b8
commit 738dc70dc1

View File

@ -147,18 +147,7 @@ struct spdk_scsi_task {
};
struct spdk_scsi_port;
struct spdk_scsi_dev;
/**
* \brief Represents a SCSI LUN.
*
* LUN modules will implement the function pointers specifically for the LUN
* type. For example, NVMe LUNs will implement scsi_execute to translate
* the SCSI task to an NVMe command and post it to the NVMe controller.
* malloc LUNs will implement scsi_execute to translate the SCSI task and
* copy the task's data into or out of the allocated memory buffer.
*/
struct spdk_scsi_lun;
int spdk_scsi_init(void);