X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=second%2Ffs.c;fp=second%2Ffs.c;h=e08f66cfcaa31f352134ddc92d7648528dd3040c;hb=0ef1539b6f680ba09c88be5bb94a821fd2599931;hp=1744f7de3f28951cafd3d9bddc8fa10e069fcf06;hpb=5613f9fab88b71f14259856b390f1cc989b602bf;p=yaboot.git diff --git a/second/fs.c b/second/fs.c index 1744f7d..e08f66c 100644 --- a/second/fs.c +++ b/second/fs.c @@ -39,15 +39,15 @@ extern const struct fs_t reiserfs_filesystem; /* Filesystem handlers yaboot knows about */ static const struct fs_t *block_filesystems[] = { - &ext2_filesystem, /* ext2 */ + &ext2_filesystem, /* ext2 */ #ifdef CONFIG_FS_XFS - &xfs_filesystem, /* XFS */ + &xfs_filesystem, /* XFS */ #endif /* CONFIG_FS_XFS */ #ifdef CONFIG_FS_REISERFS - &reiserfs_filesystem, /* reiserfs */ + &reiserfs_filesystem, /* reiserfs */ #endif /* CONFIG_FS_REISERFS */ - &of_filesystem, /* HFS/HFS+, ISO9660, UDF, UFS */ - NULL + &of_filesystem, /* HFS/HFS+, ISO9660, UDF, UFS */ + NULL }; const struct fs_t *fs_of = &of_filesystem; /* needed by ISO9660 */ @@ -64,3 +64,10 @@ fs_open(struct boot_file_t *file, const char *dev_name, return *fs; } + +/* + * Local variables: + * c-file-style: "K&R" + * c-basic-offset: 5 + * End: + */