Explorar el Código

Merge pull request #4864 from linzhenxing-bit/master

修改mmc初始化错误,将card-》csd写成card-》cid
Bernard Xiong hace 4 años
padre
commit
4919c41527
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      components/drivers/sdio/mmc.c

+ 2 - 2
components/drivers/sdio/mmc.c

@@ -122,7 +122,7 @@ static int mmc_get_ext_csd(struct rt_mmcsd_card *card, rt_uint8_t **new_ext_csd)
 
   *new_ext_csd = RT_NULL;
 
-  if (GET_BITS(card->resp_cid, 122, 4) < 4)
+  if (GET_BITS(card->resp_csd, 122, 4) < 4)
      return 0;
 
   /*
@@ -303,7 +303,7 @@ static int mmc_select_bus_width(struct rt_mmcsd_card *card, rt_uint8_t *ext_csd)
   unsigned idx, trys, bus_width = 0;
   int err = 0;
 
-  if (GET_BITS(card->resp_cid, 122, 4) < 4)
+  if (GET_BITS(card->resp_csd, 122, 4) < 4)
      return 0;
 
   /*