]> git.ozlabs.org Git - yaboot.git/blobdiff - second/fs.c
Commit yaboot 1.3.4
[yaboot.git] / second / fs.c
index 1744f7de3f28951cafd3d9bddc8fa10e069fcf06..e08f66cfcaa31f352134ddc92d7648528dd3040c 100644 (file)
@@ -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:
+ */