public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] mmc-uclass: correct the device number
@ 2016-07-18  9:52 Kever Yang
  2016-07-18 11:55 ` Simon Glass
  0 siblings, 1 reply; 3+ messages in thread
From: Kever Yang @ 2016-07-18  9:52 UTC (permalink / raw)
  To: u-boot

The devnum in is start from 0, so the device number should be
(devnum+1).

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
---

 drivers/mmc/mmc-uclass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/mmc-uclass.c b/drivers/mmc/mmc-uclass.c
index 38ced41..7c40d24 100644
--- a/drivers/mmc/mmc-uclass.c
+++ b/drivers/mmc/mmc-uclass.c
@@ -111,7 +111,7 @@ struct mmc *find_mmc_device(int dev_num)
 
 int get_mmc_num(void)
 {
-	return max(blk_find_max_devnum(IF_TYPE_MMC), 0);
+	return max((blk_find_max_devnum(IF_TYPE_MMC)+1), 0);
 }
 
 int mmc_get_next_devnum(void)
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-07-19  9:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-18  9:52 [U-Boot] [PATCH] mmc-uclass: correct the device number Kever Yang
2016-07-18 11:55 ` Simon Glass
2016-07-19  9:19   ` Kever Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox