]> git.ozlabs.org Git - yaboot.git/blobdiff - second/fs.c
Prepare for netboot fix(following patch). No Functional change.
[yaboot.git] / second / fs.c
index 2ae70669eb7652fd1c9f1b142f0c0a7e622aca55..b748bed3e2d8401fc195ebae9f3fe80809609bd9 100644 (file)
@@ -56,12 +56,12 @@ const struct fs_t *fs_of = &of_filesystem;              /* needed by ISO9660 */
 const struct fs_t *fs_of_netboot = &of_net_filesystem;  /* needed by file.c */
 
 const struct fs_t *
 const struct fs_t *fs_of_netboot = &of_net_filesystem;  /* needed by file.c */
 
 const struct fs_t *
-fs_open(struct boot_file_t *file, const char *dev_name,
-       struct partition_t *part, const char *file_name)
+fs_open(struct boot_file_t *file,
+       struct partition_t *part, struct boot_fspec_t *fspec)
 {
      const struct fs_t **fs;
      for (fs = block_filesystems; *fs; fs++)
 {
      const struct fs_t **fs;
      for (fs = block_filesystems; *fs; fs++)
-         if ((fserrorno = (*fs)->open(file, dev_name, part, file_name)) != FILE_ERR_BAD_FSYS)
+         if ((fserrorno = (*fs)->open(file, part, fspec)) != FILE_ERR_BAD_FSYS)
               break;
 
      return *fs;
               break;
 
      return *fs;