aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/TempDataLogger/Lib/FATFs/diskio.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-29 16:20:45 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-29 16:20:45 +0000
commit28401f7bb749350a66ebe95649d01a25c01842f7 (patch)
treeeff8174e307ea39ee7c1351fde7c23f0f33faf6c /Projects/TempDataLogger/Lib/FATFs/diskio.c
parentca007f91f2aa959a738649d35becb54cb1efc8b8 (diff)
downloadlufa-28401f7bb749350a66ebe95649d01a25c01842f7.tar.gz
lufa-28401f7bb749350a66ebe95649d01a25c01842f7.tar.bz2
lufa-28401f7bb749350a66ebe95649d01a25c01842f7.zip
Spell check all source files once again to find any typos.
Diffstat (limited to 'Projects/TempDataLogger/Lib/FATFs/diskio.c')
-rw-r--r--Projects/TempDataLogger/Lib/FATFs/diskio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Projects/TempDataLogger/Lib/FATFs/diskio.c b/Projects/TempDataLogger/Lib/FATFs/diskio.c
index d4f3897bb..68c2aeb97 100644
--- a/Projects/TempDataLogger/Lib/FATFs/diskio.c
+++ b/Projects/TempDataLogger/Lib/FATFs/diskio.c
@@ -8,10 +8,10 @@
#include "diskio.h"
/*-----------------------------------------------------------------------*/
-/* Inidialize a Drive */
+/* Initialize a Drive */
DSTATUS disk_initialize (
- BYTE drv /* Physical drive nmuber (0..) */
+ BYTE drv /* Physical drive number (0..) */
)
{
return FR_OK;
@@ -23,7 +23,7 @@ DSTATUS disk_initialize (
/* Return Disk Status */
DSTATUS disk_status (
- BYTE drv /* Physical drive nmuber (0..) */
+ BYTE drv /* Physical drive number (0..) */
)
{
return FR_OK;
@@ -35,7 +35,7 @@ DSTATUS disk_status (
/* Read Sector(s) */
DRESULT disk_read (
- BYTE drv, /* Physical drive nmuber (0..) */
+ BYTE drv, /* Physical drive number (0..) */
BYTE *buff, /* Data buffer to store read data */
DWORD sector, /* Sector address (LBA) */
BYTE count /* Number of sectors to read (1..255) */
@@ -52,7 +52,7 @@ DRESULT disk_read (
#if _READONLY == 0
DRESULT disk_write (
- BYTE drv, /* Physical drive nmuber (0..) */
+ BYTE drv, /* Physical drive number (0..) */
const BYTE *buff, /* Data to be written */
DWORD sector, /* Sector address (LBA) */
BYTE count /* Number of sectors to write (1..255) */
@@ -69,7 +69,7 @@ DRESULT disk_write (
/* Miscellaneous Functions */
DRESULT disk_ioctl (
- BYTE drv, /* Physical drive nmuber (0..) */
+ BYTE drv, /* Physical drive number (0..) */
BYTE ctrl, /* Control code */
void *buff /* Buffer to send/receive control data */
)