summaryrefslogtreecommitdiff
path: root/cmd/blk_common.c
Commit message (Collapse)AuthorAgeFilesLines
* cmd: blk: Use LBAFU in the common block commandBin Meng2017-09-151-6/+4
| | | | | | | There is already a macro LBAFU to aid formatted print with lbaint_t variables. Let's use it in the common block command codes. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
* dm: blk: Add a generic function for block device commandsSimon Glass2017-08-171-0/+104
Most block devices provide a command (e.g. 'sata', 'scsi', 'ide') and these commands generally do the same thing. This makes it harder to maintain this code and keep it consistent. We now have a block device interface which is either implemented by driver model (when CONFIG_BLK is enabled) or with a legacy interface. Therefore it is possible to handle most of what these commands do with generic code. Add a new generic function to process block-device commands using the interface type and the current device number for that type. Signed-off-by: Simon Glass <sjg@chromium.org>