diff --git a/fs/cramfs/cramfs.c b/fs/cramfs/cramfs.c index 73a3759..b9ab50f 100644 --- a/fs/cramfs/cramfs.c +++ b/fs/cramfs/cramfs.c @@ -456,7 +456,6 @@ } static struct fs_driver_d cramfs_driver = { - .type = FS_TYPE_CRAMFS, .open = cramfs_open, .close = cramfs_close, .read = cramfs_read, diff --git a/fs/devfs.c b/fs/devfs.c index 7019c8d..d40bf90 100644 --- a/fs/devfs.c +++ b/fs/devfs.c @@ -282,7 +282,6 @@ } static struct fs_driver_d devfs_driver = { - .type = FS_TYPE_DEVFS, .read = devfs_read, .write = devfs_write, .lseek = devfs_lseek, diff --git a/fs/ramfs.c b/fs/ramfs.c index 91001f1..db417e1 100644 --- a/fs/ramfs.c +++ b/fs/ramfs.c @@ -543,7 +543,6 @@ } static struct fs_driver_d ramfs_driver = { - .type = FS_TYPE_RAMFS, .create = ramfs_create, .unlink = ramfs_unlink, .open = ramfs_open, diff --git a/include/fs.h b/include/fs.h index 4c03978..3834fe4 100644 --- a/include/fs.h +++ b/include/fs.h @@ -3,10 +3,6 @@ #include -#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 @@ #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);