Changeset a3f1b54 in rtems
- Timestamp:
- Nov 20, 2004, 3:16:12 AM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- bf474880
- Parents:
- 8f56a709
- Location:
- cpukit
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r8f56a709 ra3f1b54 1 2004-11-20 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * libfs/src/dosfs/dosfs.h: Add doxygen preamble. 4 * libfs/src/dosfs/msdos.h: Remove RC_OK. 5 * libfs/src/dosfs/msdos_format.c: Remove unnecessary casts. 6 1 7 2004-11-20 Ralf Corsepius <ralf.corsepius@rtems.org> 2 8 -
cpukit/libfs/src/dosfs/dosfs.h
r8f56a709 ra3f1b54 1 /* 2 * dosfs.h1 /** 2 * @file rtems/dosfs.h 3 3 * 4 4 * Application interface to MSDOS filesystem. 5 * 5 */ 6 7 /* 6 8 * Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia 7 9 * Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru> -
cpukit/libfs/src/dosfs/msdos.h
r8f56a709 ra3f1b54 25 25 #include "fat.h" 26 26 #include "fat_file.h" 27 28 #ifndef RC_OK29 #define RC_OK 0x0000000030 #endif31 27 32 28 #define MSDOS_NAME_NOT_FOUND_ERR 0xDD000001 -
cpukit/libfs/src/dosfs/msdos_format.c
r8f56a709 ra3f1b54 869 869 0, 870 870 fmt_params.bytes_per_sector, 871 (void *)tmp_sec);871 tmp_sec); 872 872 } 873 873 if ((ret_val == 0) && … … 879 879 fmt_params.mbr_copy_sec , 880 880 fmt_params.bytes_per_sector, 881 (void *)tmp_sec);881 tmp_sec); 882 882 } 883 883 /* … … 896 896 fmt_params.fsinfo_sec, 897 897 fmt_params.bytes_per_sector, 898 (void *)tmp_sec);898 tmp_sec); 899 899 } 900 900 /*
Note: See TracChangeset
for help on using the changeset viewer.