diff options
author | Simon Glass <sjg@chromium.org> | 2017-06-14 21:28:41 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-07-11 10:08:19 -0600 |
commit | 8eab1a58dd53cbf89dca54f91cf3fbb51d714644 (patch) | |
tree | 2ec0bcfab13a2374da951e8b7339d264fd19985b /common | |
parent | 4682c8a19b4eb69f7ad51df3f543375583ce878a (diff) | |
download | u-boot-8eab1a58dd53cbf89dca54f91cf3fbb51d714644.tar.gz |
dm: scsi: Document and rename the scsi_scan() parameter
The 'mode' parameter is actually a flag to determine whether to display
a list of devices found during the scan. Rename it to reflect this, add a
function comment and adjust callers to use a boolean.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/spl_sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl_sata.c b/common/spl/spl_sata.c index 5476206131..bac11f64f1 100644 --- a/common/spl/spl_sata.c +++ b/common/spl/spl_sata.c @@ -34,7 +34,7 @@ static int spl_sata_load_image(struct spl_image_info *spl_image, return err; } else { /* try to recognize storage devices immediately */ - scsi_scan(0); + scsi_scan(false); stor_dev = blk_get_devnum_by_type(IF_TYPE_SCSI, 0); if (!stor_dev) return -ENODEV; |