diff mbox

[U-Boot,v4] mmc-uclass: correct the device number

Message ID 1469179370-25867-1-git-send-email-kever.yang@rock-chips.com
State Accepted
Commit 46683f3da191a4c2156d5473c23b9923c461912c
Delegated to: Simon Glass
Headers show

Commit Message

Kever Yang July 22, 2016, 9:22 a.m. UTC
Not like the mmc-legacy which the devnum starts from 1, it starts from 0
in mmc-uclass, so the device number should be (devnum + 1) in get_mmc_num().

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

Changes in v4:
- call blk_find_max_devnum() in mmc_get_next_devnum for error return.

Changes in v3:
- apply comments from Jaehoon Chung

Changes in v2:
- add comment for get_mmc_num() in mmc.h
- update mmc_get_next_devnum()

 drivers/mmc/mmc-uclass.c | 6 +++---
 include/mmc.h            | 6 ++++++
 2 files changed, 9 insertions(+), 3 deletions(-)

Comments

Simon Glass July 23, 2016, 2:08 a.m. UTC | #1
On 22 July 2016 at 03:22, Kever Yang <kever.yang@rock-chips.com> wrote:
> Not like the mmc-legacy which the devnum starts from 1, it starts from 0
> in mmc-uclass, so the device number should be (devnum + 1) in get_mmc_num().
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
> ---
>
> Changes in v4:
> - call blk_find_max_devnum() in mmc_get_next_devnum for error return.
>
> Changes in v3:
> - apply comments from Jaehoon Chung
>
> Changes in v2:
> - add comment for get_mmc_num() in mmc.h
> - update mmc_get_next_devnum()
>
>  drivers/mmc/mmc-uclass.c | 6 +++---
>  include/mmc.h            | 6 ++++++
>  2 files changed, 9 insertions(+), 3 deletions(-)

Acked-by: Simon Glass <sjg@chromium.org>
Jaehoon Chung July 25, 2016, 5:11 a.m. UTC | #2
On 07/23/2016 11:08 AM, Simon Glass wrote:
> On 22 July 2016 at 03:22, Kever Yang <kever.yang@rock-chips.com> wrote:
>> Not like the mmc-legacy which the devnum starts from 1, it starts from 0
>> in mmc-uclass, so the device number should be (devnum + 1) in get_mmc_num().
>>
>> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
>> ---
>>
>> Changes in v4:
>> - call blk_find_max_devnum() in mmc_get_next_devnum for error return.
>>
>> Changes in v3:
>> - apply comments from Jaehoon Chung
>>
>> Changes in v2:
>> - add comment for get_mmc_num() in mmc.h
>> - update mmc_get_next_devnum()
>>
>>  drivers/mmc/mmc-uclass.c | 6 +++---
>>  include/mmc.h            | 6 ++++++
>>  2 files changed, 9 insertions(+), 3 deletions(-)
> 
> Acked-by: Simon Glass <sjg@chromium.org>
> 

Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>

> 
>
Simon Glass July 28, 2016, 3:33 a.m. UTC | #3
On 24 July 2016 at 23:11, Jaehoon Chung <jh80.chung@samsung.com> wrote:
> On 07/23/2016 11:08 AM, Simon Glass wrote:
>> On 22 July 2016 at 03:22, Kever Yang <kever.yang@rock-chips.com> wrote:
>>> Not like the mmc-legacy which the devnum starts from 1, it starts from 0
>>> in mmc-uclass, so the device number should be (devnum + 1) in get_mmc_num().
>>>
>>> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
>>> ---
>>>
>>> Changes in v4:
>>> - call blk_find_max_devnum() in mmc_get_next_devnum for error return.
>>>
>>> Changes in v3:
>>> - apply comments from Jaehoon Chung
>>>
>>> Changes in v2:
>>> - add comment for get_mmc_num() in mmc.h
>>> - update mmc_get_next_devnum()
>>>
>>>  drivers/mmc/mmc-uclass.c | 6 +++---
>>>  include/mmc.h            | 6 ++++++
>>>  2 files changed, 9 insertions(+), 3 deletions(-)
>>
>> Acked-by: Simon Glass <sjg@chromium.org>
>>
>
> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
>
>>
>>
>

Applied to u-boot-rockchip, thanks!
diff mbox

Patch

diff --git a/drivers/mmc/mmc-uclass.c b/drivers/mmc/mmc-uclass.c
index 38ced41..f262c6e 100644
--- a/drivers/mmc/mmc-uclass.c
+++ b/drivers/mmc/mmc-uclass.c
@@ -111,18 +111,18 @@  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)
 {
 	int ret;
 
-	ret = get_mmc_num();
+	ret = blk_find_max_devnum(IF_TYPE_MMC);
 	if (ret < 0)
 		return ret;
 
-	return ret + 1;
+	return ret;
 }
 
 struct blk_desc *mmc_get_blk_desc(struct mmc *mmc)
diff --git a/include/mmc.h b/include/mmc.h
index 8f309f1..dd47f34 100644
--- a/include/mmc.h
+++ b/include/mmc.h
@@ -503,6 +503,12 @@  void mmc_set_clock(struct mmc *mmc, uint clock);
 struct mmc *find_mmc_device(int dev_num);
 int mmc_set_dev(int dev_num);
 void print_mmc_devices(char separator);
+
+/**
+ * get_mmc_num() - get the total MMC device number
+ *
+ * @return 0 if there is no MMC device, else the number of devices
+ */
 int get_mmc_num(void);
 int mmc_hwpart_config(struct mmc *mmc, const struct mmc_hwpart_conf *conf,
 		      enum mmc_hwpart_conf_mode mode);