summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2003-07-02 14:08:43 +0000
committerChris Johns <chrisj@rtems.org>2003-07-02 14:08:43 +0000
commit3b44f153751399bd0af677b659ad4415b786ab50 (patch)
tree42fa162f205b78a4983ed20166f7d865a9aae8a2 /cpukit/libfs
parent2003-06-30 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-3b44f153751399bd0af677b659ad4415b786ab50.tar.bz2
Comments have been updated.
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/dosfs/fat.c3
-rw-r--r--cpukit/libfs/src/dosfs/fat.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/cpukit/libfs/src/dosfs/fat.c b/cpukit/libfs/src/dosfs/fat.c
index 3c9b10d9f5..f38cd7e8a8 100644
--- a/cpukit/libfs/src/dosfs/fat.c
+++ b/cpukit/libfs/src/dosfs/fat.c
@@ -274,8 +274,7 @@ fat_init_volume_info(rtems_filesystem_mount_table_entry_t *mt_entry)
i >>= 1, vol->spc_log2++);
/*
- * According to M$ White Paper "bytes per cluster" value
- * greater than 32K is invalid
+ * "bytes per cluster" value greater than 32K is invalid
*/
if ((vol->bpc = vol->bps << vol->spc_log2) > MS_BYTES_PER_CLUSTER_LIMIT)
{
diff --git a/cpukit/libfs/src/dosfs/fat.h b/cpukit/libfs/src/dosfs/fat.h
index b8361d55cf..a324aca32d 100644
--- a/cpukit/libfs/src/dosfs/fat.h
+++ b/cpukit/libfs/src/dosfs/fat.h
@@ -166,7 +166,7 @@ extern "C" {
* Volume descriptor
* Description of the volume the FAT filesystem is located on - generally
* the fields of the structure corresponde to Boot Sector and BPB Srtucture
- * (see M$ White Paper) fields
+ * fields
*/
typedef struct fat_vol_s
{