aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports
diff options
context:
space:
mode:
authorUladzimir Pylinski <barthess@yandex.ru>2015-02-19 17:16:15 +0000
committerUladzimir Pylinski <barthess@yandex.ru>2015-02-19 17:16:15 +0000
commitd5307c5e08bf00d85c04917aafb5e2f58d56b1e5 (patch)
tree16e07c2f2a49b8e8a5317f6b3ee18707ca395ee3 /os/hal/ports
parent9e2c12eb741938452ec295a1b9809e96174fd71f (diff)
downloadChibiOS-d5307c5e08bf00d85c04917aafb5e2f58d56b1e5.tar.gz
ChibiOS-d5307c5e08bf00d85c04917aafb5e2f58d56b1e5.tar.bz2
ChibiOS-d5307c5e08bf00d85c04917aafb5e2f58d56b1e5.zip
SDIO. Added forgotten NULL pointer checks.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7695 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports')
-rw-r--r--os/hal/ports/STM32/LLD/sdc_lld.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/LLD/sdc_lld.h b/os/hal/ports/STM32/LLD/sdc_lld.h
index ddca0e578..8c0f7eb4c 100644
--- a/os/hal/ports/STM32/LLD/sdc_lld.h
+++ b/os/hal/ports/STM32/LLD/sdc_lld.h
@@ -227,8 +227,8 @@ typedef struct {
* procedures (temporal storage for EXT_CSD, etc.).
* @note Buffer must be word aligned and big enough to store 512 bytes.
* @note It is mandatory for MMC bigger than 2GB.
- * @note Memory can be freed after @p sdcConnect function call. Do not
- * forge to set this pointer to @p NULL after freeing.
+ * @note Memory can be freed after @p sdcConnect return. Do not
+ * forget to set this pointer to @p NULL after freeing.
*/
uint8_t *scratchpad;
} SDCConfig;