projects
/
pub
/
lufa.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Oops - ensure the SCSI transfer length is correct in the Mass Storage bootloader.
[pub/lufa.git]
/
Bootloaders
/
MassStorage
/
Lib
/
VirtualFAT.h
diff --git
a/Bootloaders/MassStorage/Lib/VirtualFAT.h
b/Bootloaders/MassStorage/Lib/VirtualFAT.h
index
58f5723
..
d01f9be
100644
(file)
--- a/
Bootloaders/MassStorage/Lib/VirtualFAT.h
+++ b/
Bootloaders/MassStorage/Lib/VirtualFAT.h
@@
-139,15
+139,15
@@
enum
{
/** Boot sector disk block. */
enum
{
/** Boot sector disk block. */
- DISK_BLOCK_BootBlock = 0,
+ DISK_BLOCK_BootBlock
= 0,
/** First copy of the FAT table block. */
/** First copy of the FAT table block. */
- DISK_BLOCK_FATBlock1 = 1,
+ DISK_BLOCK_FATBlock1
= 1,
/** Second copy of the FAT table block. */
/** Second copy of the FAT table block. */
- DISK_BLOCK_FATBlock2 = 2,
+ DISK_BLOCK_FATBlock2
= 2,
/** Root file and directory entries block. */
/** Root file and directory entries block. */
- DISK_BLOCK_RootFilesBlock = 3,
+ DISK_BLOCK_RootFilesBlock
= 3,
/** Start block of the disk data section. */
/** Start block of the disk data section. */
- DISK_BLOCK_DataStartBlock = 4,
+ DISK_BLOCK_DataStartBlock
= 4,
};
/* Type Definitions: */
};
/* Type Definitions: */