git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1352 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2009-11-29 08:54:20 +00:00
parent d4c616e6ee
commit 31c93cbb65
1 changed files with 7 additions and 4 deletions

View File

@ -19,14 +19,15 @@
/** /**
* @file mmc_spi.c * @file mmc_spi.c
* @brief MMC over SPI driver code * @brief MMC over SPI driver code.
* @addtogroup MMC_SPI * @addtogroup MMC_SPI
* @{ * @{
*/ */
#include <ch.h> #include "ch.h"
#include <spi.h> #include "hal.h"
#include <mmc_spi.h>
#if CH_HAL_USE_MMC_SPI
/*===========================================================================*/ /*===========================================================================*/
/* Driver local functions. */ /* Driver local functions. */
@ -569,4 +570,6 @@ bool_t mmcStopSequentialWrite(MMCDriver *mmcp) {
return TRUE; return TRUE;
} }
#endif /* CH_HAL_USE_MMC_SPI */
/** @} */ /** @} */