summaryrefslogtreecommitdiff
path: root/core/include/fs.h
diff options
context:
space:
mode:
authorLiu Aleaxander <Aleaxander@gmail.com>2009-11-20 13:53:45 +0800
committerLiu Aleaxander <Aleaxander@gmail.com>2009-11-20 13:53:45 +0800
commitfbd988fa9f5d35b34e7b5431e17fc06da48d9995 (patch)
treef37448bac3e154962d79463ae19bb1115cfc156c /core/include/fs.h
parent7acda33d12dea2117bbfd9ba138104d680efcd85 (diff)
downloadsyslinux-fbd988fa9f5d35b34e7b5431e17fc06da48d9995.tar.gz
EXTLINUX: simplify the ext2_fs_init function
And also simplified the ext2_sb_info structure. Signed-off-by: Liu Aleaxander <Aleaxander@gmail.com>
Diffstat (limited to 'core/include/fs.h')
-rw-r--r--core/include/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/include/fs.h b/core/include/fs.h
index 28b66793..72138be0 100644
--- a/core/include/fs.h
+++ b/core/include/fs.h
@@ -23,8 +23,8 @@
struct fs_info {
const struct fs_ops *fs_ops;
struct device *fs_dev;
- void *fs_info; /* The fs-specific information */
- int blk_bits; /* block_size = 1 << (blk_bits + SECTOR_SHIFT */
+ void *fs_info; /* The fs-specific information */
+ int blk_bits; /* block_size = 1 << (blk_bits + SECTOR_SHIFT) */
};
extern struct fs_info *this_fs;