]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
mmc: fix capacity calculation when EXT_CSD_SEC_CNT is used
authorYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Thu, 7 Jun 2012 19:09:11 +0000 (19:09 +0000)
committerAndy Fleming <afleming@freescale.com>
Wed, 5 Sep 2012 22:32:41 +0000 (17:32 -0500)
commitcdfd1ac6df16f11fa00e30a76e3c37d61c24b7fa
tree9d291d87791b8f52479b31f0afecf84503aff396
parent97a7b9928aceefb6e9024261b86e49e0e77d6bfd
mmc: fix capacity calculation when EXT_CSD_SEC_CNT is used

Since the type of "ext_csd" was array of char, the following
calculation might fail when the value of ext_csd[EXT_CSD_SEC_CNT]
was minus.

capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
| ext_csd[EXT_CSD_SEC_CNT + 1] << 8
| ext_csd[EXT_CSD_SEC_CNT + 2] << 16
| ext_csd[EXT_CSD_SEC_CNT + 3] << 24;

So, this patch changes the type of "ext_csd" to array of u8.

Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
drivers/mmc/mmc.c