summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-03-05 10:34:28 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-03-05 11:23:10 +0100
commitc735cd5a1f24bcf5023fcd5fc4097a1fced45652 (patch)
treee28ae0bcd818200f8548c7df685c26169725fbbc /cpukit/libfs/src/dosfs/msdos.h
parenttests: Fix warning (diff)
downloadrtems-c735cd5a1f24bcf5023fcd5fc4097a1fced45652.tar.bz2
dosfs: Fix warnings
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos.h')
-rw-r--r--cpukit/libfs/src/dosfs/msdos.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos.h b/cpukit/libfs/src/dosfs/msdos.h
index e6cffbba91..d1ce5ad039 100644
--- a/cpukit/libfs/src/dosfs/msdos.h
+++ b/cpukit/libfs/src/dosfs/msdos.h
@@ -85,13 +85,6 @@ extern const rtems_filesystem_file_handlers_r msdos_file_handlers;
* of ticks to help debugging or if you need such a */
#define MSDOS_VOLUME_SEMAPHORE_TIMEOUT RTEMS_NO_TIMEOUT
-/* Node types */
-typedef enum {
- MSDOS_DIRECTORY = 0,
- MSDOS_REGULAR_FILE = 4,
- MSDOS_HARD_LINK = 2 /* pseudo type */
-} msdos_node_type_t;
-
/*
* Macros for fetching fields from 32 bytes long FAT Directory Entry
* Structure
@@ -370,7 +363,7 @@ int msdos_dir_stat(
*
*/
int msdos_creat_node(const rtems_filesystem_location_info_t *parent_loc,
- msdos_node_type_t type,
+ fat_file_type_t type,
const char *name,
int name_len,
mode_t mode,