diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-07-19 13:15:30 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-07-19 13:15:30 +0200 |
commit | 3d69f3a8c2ed1c7f322d23145bc0c3d980ebbacb (patch) | |
tree | 84f92faaf3e7c28611110be4c10da79e370d9be8 /drivers/usb/gadget/function/f_mass_storage.c | |
parent | 446230f52a5bef593554510302465eabab45a372 (diff) | |
parent | b8b9c974afee685789fcbb191b52d1790be3608c (diff) | |
download | talos-op-linux-3d69f3a8c2ed1c7f322d23145bc0c3d980ebbacb.tar.gz talos-op-linux-3d69f3a8c2ed1c7f322d23145bc0c3d980ebbacb.zip |
Merge tag 'fixes-for-v4.13-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus
Felipe writes:
usb: fixes for v4.13-rc2
First set of fixes for the current -rc cycle. Only three fixes on dwc3
this time around (proper order for getting a PHY reference, fix for
unmapping DMA and a fix for requesting IRQ on the OMAP glue layer).
Most fixes are on the renesas USB controller, fixing several old bugs
with most going to stable.
dwc2 also learned that it *must* reset USB Address to zero on Reset
interrupts.
Apart from these, some drivers needed HAS_DMA dependency and there's a
sparse warning fix for bdc udc.
Diffstat (limited to 'drivers/usb/gadget/function/f_mass_storage.c')
-rw-r--r-- | drivers/usb/gadget/function/f_mass_storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/function/f_mass_storage.c b/drivers/usb/gadget/function/f_mass_storage.c index e80b9c123a9d..f95bddd6513f 100644 --- a/drivers/usb/gadget/function/f_mass_storage.c +++ b/drivers/usb/gadget/function/f_mass_storage.c @@ -2490,7 +2490,7 @@ static int fsg_main_thread(void *common_) int i; down_write(&common->filesem); - for (i = 0; i < ARRAY_SIZE(common->luns); --i) { + for (i = 0; i < ARRAY_SIZE(common->luns); i++) { struct fsg_lun *curlun = common->luns[i]; if (!curlun || !fsg_lun_is_open(curlun)) continue; |