mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 09:49:21 +08:00
mmcsd: fix a logic error
Signed-off-by: wanggang26 <wanggang26@xiaomi.com>
This commit is contained in:
parent
d2b58a520e
commit
1a6e8b9c99
1 changed files with 2 additions and 2 deletions
|
@ -981,10 +981,10 @@ static void mmcsd_decode_scr(FAR struct mmcsd_state_s *priv, uint32_t scr[2])
|
|||
|
||||
#ifdef CONFIG_ENDIAN_BIG /* Card transfers SCR in big-endian order */
|
||||
priv->buswidth = (scr[0] >> 16) & 15;
|
||||
priv->cmd23support = scr[0] & 2;
|
||||
priv->cmd23support = (scr[0] >> 1) & 1;
|
||||
#else
|
||||
priv->buswidth = (scr[0] >> 8) & 15;
|
||||
priv->cmd23support = (scr[0] >> 24) & 2;
|
||||
priv->cmd23support = (scr[0] >> 25) & 1;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_DEBUG_FS_INFO
|
||||
|
|
Loading…
Reference in a new issue