SDIO. Fixed typo.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7702 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Uladzimir Pylinski 2015-02-24 07:55:26 +00:00
parent 3f403d2288
commit 40304ed993
2 changed files with 3 additions and 3 deletions

View File

@ -381,7 +381,7 @@ typedef struct {
uint8_t tmp_write_protect;
uint8_t file_format;
uint8_t crc;
} unmacked_sdc_csd_20_t;
} unpacked_sdc_csd_20_t;
/**
* @brief Unpacked CSD register from MMC.
@ -489,7 +489,7 @@ extern "C" {
void _mmcsd_unpack_csd_v10(const MMCSDBlockDevice *sdcp,
unpacked_sdc_csd_10_t *csd10);
void _mmcsd_unpack_csd_v20(const MMCSDBlockDevice *sdcp,
unmacked_sdc_csd_20_t *csd20);
unpacked_sdc_csd_20_t *csd20);
#ifdef __cplusplus
}
#endif

View File

@ -293,7 +293,7 @@ void _mmcsd_unpack_csd_v10(const MMCSDBlockDevice *sdcp,
* @notapi
*/
void _mmcsd_unpack_csd_v20(const MMCSDBlockDevice *sdcp,
unmacked_sdc_csd_20_t *csd20) {
unpacked_sdc_csd_20_t *csd20) {
const uint32_t *csd;
osalDbgCheck(NULL != sdcp);