]> git.ozlabs.org Git - yaboot.git/blobdiff - second/fs_iso.c
Prepare for netboot fix(following patch). No Functional change.
[yaboot.git] / second / fs_iso.c
index 303790f27bded5f97d8dd34b0d2a6a38ed367396..33d43b3e86d1fdaef162b8deb410e51578c19203 100644 (file)
@@ -29,9 +29,8 @@
 #include "errors.h"
 
 static int iso_open(   struct boot_file_t*     file,
-                       const char*             dev_name,
                        struct partition_t*     part,
-                       const char*             file_name);
+                       struct boot_fspec_t*    fspec);
 static int iso_read(   struct boot_file_t*     file,
                        unsigned int            size,
                        void*                   buffer);
@@ -50,9 +49,8 @@ struct fs_t iso_filesystem =
 
 static int
 iso_open(      struct boot_file_t*     file,
-               const char*             dev_name,
                struct partition_t*     part,
-               const char*             file_name)
+               struct boot_fspec_t*    fspec)
 {
      return FILE_ERR_BAD_FSYS;
 }