X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=blobdiff_plain;f=second%2Ffs.c;h=b748bed3e2d8401fc195ebae9f3fe80809609bd9;hp=2ae70669eb7652fd1c9f1b142f0c0a7e622aca55;hb=11f8168a5e7a6f966693e371697920e0be7abc0f;hpb=b58b7f84f40f96f61a1d5fc1f88a1abd9c1a4193 diff --git a/second/fs.c b/second/fs.c index 2ae7066..b748bed 100644 --- a/second/fs.c +++ b/second/fs.c @@ -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 * -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++) - 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;