summaryrefslogtreecommitdiff
path: root/include/scsi.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-06-14 21:28:29 -0600
committerSimon Glass <sjg@chromium.org>2017-07-11 10:08:19 -0600
commitaae5ec34032610f2144542fd1b30b6a5cc559d79 (patch)
tree134b1f35407efb298112bc56952d88ef84e525f9 /include/scsi.h
parent043682422c3baccba5a935cfe8a7b856ce076dff (diff)
dm: scsi: Rename struct SCSI_cmd_block to struct scsi_cmd
This name should be lower case. Also the _block suffix is superfluous. Rename it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/scsi.h')
-rw-r--r--include/scsi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scsi.h b/include/scsi.h
index f94b2ef514..182665dd0c 100644
--- a/include/scsi.h
+++ b/include/scsi.h
@@ -7,7 +7,7 @@
#ifndef _SCSI_H
#define _SCSI_H
-typedef struct SCSI_cmd_block{
+typedef struct scsi_cmd{
unsigned char cmd[16]; /* command */
/* for request sense */
unsigned char sense_buf[64]