diff options
author | Mario Schuknecht <mario.schuknecht@dresearch-fe.de> | 2015-01-26 19:40:21 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-01-27 15:34:59 (GMT) |
commit | acba23fec527012e901636e4ba091ee25461c943 (patch) | |
tree | d978d9ecd3bf2ac47ef56eb29ccd46224ffdabbc /drivers | |
parent | df6738d0d23321da834e9025845e26e09b0f6615 (diff) | |
download | linux-acba23fec527012e901636e4ba091ee25461c943.tar.xz |
usb: gadget: f_fs: Fix loop variable
Use if-loop variable 'epfile' instead of start variable 'epfiles'. Now the
correct endpoint file name is stored.
Signed-off-by: Mario Schuknecht <mario.schuknecht@dresearch-fe.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/gadget/function/f_fs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c index e78a2c6..14e44d7 100644 --- a/drivers/usb/gadget/function/f_fs.c +++ b/drivers/usb/gadget/function/f_fs.c @@ -1611,10 +1611,10 @@ static int ffs_epfiles_create(struct ffs_data *ffs) mutex_init(&epfile->mutex); init_waitqueue_head(&epfile->wait); if (ffs->user_flags & FUNCTIONFS_VIRTUAL_ADDR) - sprintf(epfiles->name, "ep%02x", ffs->eps_addrmap[i]); + sprintf(epfile->name, "ep%02x", ffs->eps_addrmap[i]); else - sprintf(epfiles->name, "ep%u", i); - epfile->dentry = ffs_sb_create_file(ffs->sb, epfiles->name, + sprintf(epfile->name, "ep%u", i); + epfile->dentry = ffs_sb_create_file(ffs->sb, epfile->name, epfile, &ffs_epfile_operations); if (unlikely(!epfile->dentry)) { |