From d915fcbc6d55a200bcc3ae65d6edd1ea234a00f3 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Fri, 27 Sep 2013 23:25:15 +0200 Subject: [PATCH] fs: remove unused field 'name' from struct fs_driver_d Signed-off-by: Sascha Hauer --- include/fs.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fs.h b/include/fs.h index c6c0f0ef3..b82c24655 100644 --- a/include/fs.h +++ b/include/fs.h @@ -39,7 +39,6 @@ typedef struct filep { #define FS_DRIVER_NO_DEV 1 struct fs_driver_d { - char *name; int (*probe) (struct device_d *dev); int (*mkdir)(struct device_d *dev, const char *pathname); int (*rmdir)(struct device_d *dev, const char *pathname);