summaryrefslogtreecommitdiff
path: root/avr/mmc.c
diff options
context:
space:
mode:
Diffstat (limited to 'avr/mmc.c')
-rw-r--r--avr/mmc.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/avr/mmc.c b/avr/mmc.c
index d45cdf5..e1a51fe 100644
--- a/avr/mmc.c
+++ b/avr/mmc.c
@@ -6,7 +6,6 @@
/*-----------------------------------------------------------------------*/
#include "common.h"
-#include <stdbool.h>
#include <util/atomic.h>
#include "timer.h"
#include "spi.h"
@@ -293,7 +292,6 @@ UINT btr /* Byte count (must be multiple of 4) */
/* Send a data packet to MMC */
/*-----------------------------------------------------------------------*/
-#if _USE_WRITE
static
int xmit_datablock (
const BYTE *buff, /* 512 byte data block to be transmitted */
@@ -323,7 +321,6 @@ int xmit_datablock (
spi_wait();
return 1;
}
-#endif /* _USE_WRITE */
/*-----------------------------------------------------------------------*/
/* Send a command packet to MMC */
@@ -585,7 +582,6 @@ DRESULT disk_read (
/* Write Sector(s) */
/*-----------------------------------------------------------------------*/
-#if _USE_WRITE
DRESULT disk_write (
BYTE drv, /* Physical drive nmuber (0) */
const BYTE *buff, /* Pointer to the data to be written */
@@ -631,13 +627,11 @@ DRESULT disk_write (
return count ? RES_ERROR : RES_OK;
}
-#endif /* _USE_WRITE */
/*-----------------------------------------------------------------------*/
/* Miscellaneous Functions */
/*-----------------------------------------------------------------------*/
-#if _USE_IOCTL
DRESULT disk_ioctl (
BYTE drv, /* Physical drive nmuber (0) */
BYTE cmd, /* Control code */
@@ -749,7 +743,6 @@ DRESULT disk_ioctl (
return res;
}
-#endif /* _USE_IOCTL */
/*-----------------------------------------------------------------------*/
/* Device Timer Interrupt Procedure (Platform dependent) */