diff options
author | Simon Glass <sjg@chromium.org> | 2016-02-29 15:25:51 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-03-14 15:34:50 -0600 |
commit | bcce53d048de7f41078d25e39aa2f26d752d3658 (patch) | |
tree | 5eb88ab671c7ec923cfb4fe9c0d3dc4715adb93d /include/blk.h | |
parent | 782b97805e9f59cc2b4d3aa67a8a03248e8cd722 (diff) | |
download | u-boot-imx-bcce53d048de7f41078d25e39aa2f26d752d3658.zip u-boot-imx-bcce53d048de7f41078d25e39aa2f26d752d3658.tar.gz u-boot-imx-bcce53d048de7f41078d25e39aa2f26d752d3658.tar.bz2 |
dm: block: Rename device number member dev to devnum
This is a device number, and we want to use 'dev' to mean a driver model
device. Rename the member.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'include/blk.h')
-rw-r--r-- | include/blk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/blk.h b/include/blk.h index fd54520..9c54842 100644 --- a/include/blk.h +++ b/include/blk.h @@ -36,7 +36,7 @@ enum if_type { struct blk_desc { enum if_type if_type; /* type of the interface */ - int dev; /* device number */ + int devnum; /* device number */ unsigned char part_type; /* partition type */ unsigned char target; /* target SCSI ID */ unsigned char lun; /* target LUN */ |