summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-11-22 09:47:04 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-11-25 08:42:49 +0100
commitb4affd64108d5baa8ad06d2e26466e082735106c (patch)
tree28fee122b80d436f35f8a474dd2b95fd62567813 /include
parent5a9e7f5eafd21360a5bbf9edc0dbd1620b6fc854 (diff)
downloadbarebox-b4affd64108d5baa8ad06d2e26466e082735106c.tar.gz
barebox-b4affd64108d5baa8ad06d2e26466e082735106c.tar.xz
fs: remove unused struct node_d in struct dir
This struct member is never used, so it can just be dropped. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20211122084732.2597109-3-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/dirent.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/dirent.h b/include/dirent.h
index d7b5e78b27..61a76c5b59 100644
--- a/include/dirent.h
+++ b/include/dirent.h
@@ -11,7 +11,6 @@ struct dirent {
typedef struct dir {
struct device_d *dev;
struct fs_driver_d *fsdrv;
- struct node_d *node;
struct dirent d;
void *priv; /* private data for the fs driver */
struct list_head entries;