mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
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>
This commit is contained in:
parent
782b97805e
commit
bcce53d048
28 changed files with 111 additions and 109 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue