]> git.ozlabs.org Git - yaboot.git/blobdiff - include/fs.h
Prepare for netboot fix(following patch). No Functional change.
[yaboot.git] / include / fs.h
index d960fea61918c80526f97d707f589647241bb8ff..1ff7986af5c9343d8dadb7de55005c2704d06511 100644 (file)
 #include "file.h"
 
 int fserrorno;
 #include "file.h"
 
 int fserrorno;
+struct boot_fspec_t;
 
 struct fs_t {
        const char* name;
 
        int (*open)(    struct boot_file_t*     file,
 
 struct fs_t {
        const char* name;
 
        int (*open)(    struct boot_file_t*     file,
-                       const char*             dev_name,
                        struct partition_t*     part,
                        struct partition_t*     part,
-                       const char*             file_name);
+                       struct boot_fspec_t*    fspec);
 
        int (*read)(    struct boot_file_t*     file,
                        unsigned int            size,
 
        int (*read)(    struct boot_file_t*     file,
                        unsigned int            size,
@@ -49,7 +49,7 @@ struct fs_t {
 extern const struct fs_t *fs_of;
 extern const struct fs_t *fs_of_netboot;
 
 extern const struct fs_t *fs_of;
 extern const struct fs_t *fs_of_netboot;
 
-const struct fs_t *fs_open(struct boot_file_t *file, const char *dev_name,
-                         struct partition_t *part, const char *file_name);
+const struct fs_t *fs_open(struct boot_file_t *file,
+                         struct partition_t *part, struct boot_fspec_t *fspec);
 
 #endif
 
 #endif