summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-04-04 15:39:05 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2011-04-11 12:36:07 +0200
commit5c44e3af24680cdcf2f7a31084bffa10d1edfbf3 (patch)
tree18dea7f608b508a61e49ece9c098cddfd913210a /include
parentbf556ae710776721b86adfee9fe0456cee0c64cc (diff)
downloadbarebox-5c44e3af24680cdcf2f7a31084bffa10d1edfbf3.tar.gz
barebox-5c44e3af24680cdcf2f7a31084bffa10d1edfbf3.tar.xz
fs: remove unused field 'type' from struct fs_driver_d
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/fs.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/fs.h b/include/fs.h
index 4c03978a03..3834fe47e5 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -3,10 +3,6 @@
#include <driver.h>
-#define FS_TYPE_CRAMFS 1
-#define FS_TYPE_RAMFS 2
-#define FS_TYPE_DEVFS 3
-
#define PATH_MAX 1024 /* include/linux/limits.h */
struct partition;
@@ -41,7 +37,6 @@ typedef struct filep {
#define FS_DRIVER_NO_DEV 1
struct fs_driver_d {
- ulong type;
char *name;
int (*probe) (struct device_d *dev);
int (*mkdir)(struct device_d *dev, const char *pathname);