summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-02-14 21:14:25 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2012-02-17 10:27:15 +0100
commit33b5ead7e63a8051805adf38b3c9728283e18f2b (patch)
tree31da3d0b9cf4ff90fbb92ebe5cd5d781e28a7efd /include
parentb0c22c2f34a6bc51a70bef138f211d30ca085d0b (diff)
downloadbarebox-33b5ead7e63a8051805adf38b3c9728283e18f2b.tar.gz
barebox-33b5ead7e63a8051805adf38b3c9728283e18f2b.tar.xz
fs: remove fs devices list
We store the fs devices in a list only because we want to check if the fs driver needs a backingstore or not. The driver will bail out anyway if it needs a backingstore and doesn't find one. So we can remove this check and thus remove the list of fs devices. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/fs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/fs.h b/include/fs.h
index 8daa1bcbc6..fcaef32e21 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -72,8 +72,6 @@ struct fs_driver_d {
struct driver_d drv;
unsigned long flags;
-
- struct list_head list;
};
struct mtab_entry {