On 01/23/2015 10:18 PM, Mario Schuknecht wrote:
> Use if-loop variable 'epfile' instead of start variable 'epfiles'. Now the
> correct endpoint file name is stored.
> 
> Signed-off-by: Mario Schuknecht <mario.schukne...@dresearch-fe.de>
> ---
>  drivers/usb/gadget/function/f_fs.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/usb/gadget/function/f_fs.c 
> b/drivers/usb/gadget/function/f_fs.c
> index 63314ed..8832a46 100644
> --- a/drivers/usb/gadget/function/f_fs.c
> +++ b/drivers/usb/gadget/function/f_fs.c
> @@ -1581,10 +1581,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)) {
> 

Acked-by: Michal Nazarewicz <min...@mina86.com>

-- 
Best regards,                                         _     _
.o. | Liege of Serenely Enlightened Majesty of      o' \,=./ `o
..o | Computer Science,  Michał “mina86” Nazarewicz    (o o)
ooo +--<m...@google.com>--<xmpp:min...@jabber.org>--ooO--(_)--Ooo--
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to