liblitesdcard/sdcard: decode cid only when SDCARD_DEBUG is set.
This commit is contained in:
parent
c07703124f
commit
e8f84c96a7
|
@ -440,8 +440,9 @@ int sdcard_init(void) {
|
||||||
|
|
||||||
/* send identification */
|
/* send identification */
|
||||||
sdcard_all_send_cid();
|
sdcard_all_send_cid();
|
||||||
|
#ifdef SDCARD_DEBUG
|
||||||
sdcard_decode_cid();
|
sdcard_decode_cid();
|
||||||
|
#endif
|
||||||
/* set relative card address */
|
/* set relative card address */
|
||||||
sdcard_set_relative_address();
|
sdcard_set_relative_address();
|
||||||
rca = (sdcard_response[3] >> 16) & 0xffff;
|
rca = (sdcard_response[3] >> 16) & 0xffff;
|
||||||
|
|
Loading…
Reference in New Issue