diff options
author | Jeuk Kim <jeuk20.kim@samsung.com> | 2023-10-19 23:28:06 +0900 |
---|---|---|
committer | Jeuk Kim <jeuk20.kim@samsung.com> | 2023-10-30 10:28:04 +0900 |
commit | 096434fea13acd19f4ead00cdf9babea8dc7e61e (patch) | |
tree | b0b1ceb8e14bd2c51dd817f954833188bc947422 /include | |
parent | c60be6e3e38cb36dc66129e757ec4b34152232be (diff) |
hw/ufs: Modify lu.c to share codes with SCSI subsystem
This patch removes the code that ufs-lu was duplicating from
scsi-hd and allows them to share code.
It makes ufs-lu have a virtual scsi-bus and scsi-hd internally.
This allows scsi related commands to be passed thorugh to the scsi-hd.
The query request and nop command work the same as the existing logic.
Well-known lus do not have a virtual scsi-bus and scsi-hd, and
handle the necessary scsi commands by emulating them directly.
Signed-off-by: Jeuk Kim <jeuk20.kim@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/block/ufs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/block/ufs.h b/include/block/ufs.h index 7631a5af10..0b6ec0814d 100644 --- a/include/block/ufs.h +++ b/include/block/ufs.h @@ -379,7 +379,7 @@ typedef struct Attributes { /* Command response result code */ typedef enum CommandRespCode { - UFS_COMMAND_RESULT_SUCESS = 0x00, + UFS_COMMAND_RESULT_SUCCESS = 0x00, UFS_COMMAND_RESULT_FAIL = 0x01, } CommandRespCode; |