Hi Felipe,

Today's linux-next merge of the usb-gadget tree got a conflict in
drivers/usb/gadget/function/f_fs.c between commit 8322215aa91c ("f_fs:
saner API for ffs_sb_create_file()") from the vfs tree and commit
1b0bf88fd8b8 ("usb: gadget: f_fs: virtual endpoint address mapping")
from the usb-gadget tree.

I fixed it up (see below) and can carry the fix as necessary (no action
is required).

-- 
Cheers,
Stephen Rothwell                    s...@canb.auug.org.au

diff --cc drivers/usb/gadget/function/f_fs.c
index 4726e278e557,4ad11e03cf54..000000000000
--- a/drivers/usb/gadget/function/f_fs.c
+++ b/drivers/usb/gadget/function/f_fs.c
@@@ -1529,11 -1557,13 +1552,14 @@@ static int ffs_epfiles_create(struct ff
                epfile->ffs = ffs;
                mutex_init(&epfile->mutex);
                init_waitqueue_head(&epfile->wait);
-               sprintf(epfiles->name, "ep%u",  i);
+               if (ffs->user_flags & FUNCTIONFS_VIRTUAL_ADDR)
+                       sprintf(epfiles->name, "ep%02x", ffs->eps_addrmap[i]);
+               else
+                       sprintf(epfiles->name, "ep%u", i);
 -              if (!unlikely(ffs_sb_create_file(ffs->sb, epfiles->name, epfile,
 -                                               &ffs_epfile_operations,
 -                                               &epfile->dentry))) {
 +              epfile->dentry = ffs_sb_create_file(ffs->sb, epfiles->name,
 +                                               epfile,
 +                                               &ffs_epfile_operations);
 +              if (unlikely(!epfile->dentry)) {
                        ffs_epfiles_destroy(epfiles, i - 1);
                        return -ENOMEM;
                }

Attachment: signature.asc
Description: PGP signature

Reply via email to