X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=second%2Ffs.c;fp=second%2Ffs.c;h=b748bed3e2d8401fc195ebae9f3fe80809609bd9;hb=d1e8ca1612860aece5ee4ab5f23d91737f0fa3e6;hp=2ae70669eb7652fd1c9f1b142f0c0a7e622aca55;hpb=1110d149dc41114e22297244ca274b9a52487356;p=yaboot.git 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;