Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1182619

[PATCH v3 0/5] usb: gadget: miscellaneous fixes

Path csiph.com!aioe.org!bofh.it!news.nic.it!robomod
From Robert Baldyga <r.baldyga@samsung.com>
Newsgroups linux.kernel
Subject [PATCH v3 0/5] usb: gadget: miscellaneous fixes
Date Mon, 13 Jul 2015 11:10:03 +0200
Message-ID <pLHUm-3aG-7@gated-at.bofh.it> (permalink)
X-Original-To gregkh@linuxfoundation.org, balbi@ti.com
X-Auditid cbfee61a-f79516d000006302-ab-55a37f0ab101
X-Mailer git-send-email 1.9.1
X-Brightmail-Tracker H4sIAAAAAAAAA+NgFtrILMWRmVeSWpSXmKPExsVy+t9jQV2u+sWhBpvecVnMetnOYnHwfr3F 63/TWSz2nPnFbtG8eD2bxabH11gtLu+aw2axaFkrs8XaI3fZLRYcb2G1+Ha5md3iweGd7BZn Vt1id+D1WPBrK4vHg6n/mTzu7TvM4rF/7hp2j81L6j3W/XnF5PHx6S0Wj74tqxg9jt/YzuTx eZNcAFcUl01Kak5mWWqRvl0CV8aG5q8sBV84K3b0z2ZrYOzj6GLk5JAQMJE48PUtK4QtJnHh 3nq2LkYuDiGB6YwS37/tgnJ+Mkr0LVgGVsUmoCOx5fsERhBbBMhe93cHWBGzwAkmiZbHz1lA EsICFhL/v3ewgdgsAqoSB/a3A8U5OHgFXCX6V3pCbJOTOHlsMusERu4FjAyrGEVTC5ILipPS cw31ihNzi0vz0vWS83M3MYID8pnUDsaVDRaHGAU4GJV4eBu2LAoVYk0sK67MPcQowcGsJMKb U7w4VIg3JbGyKrUoP76oNCe1+BCjNAeLkjjvyXyfUCGB9MSS1OzU1ILUIpgsEwenVAPjpM6g FbaTJbqONt90KxMV6nbVaKhy9Vo3e23h1D3CB+t7TuZ+niA+rbn3UueBbXInldTv/A6qS7wp K59YoKnL0Okcmu+Tmdold5Jjx4bSuNq7HWu+KfB8yvHcLHC/svDXBZ9N/x7PsjixnC1HrfT0 z+yDK9wdZ809wv7z5C5r2d4VX5sd/jArsRRnJBpqMRcVJwIAPIlDIkQCAAA=
Sender robomod@news.nic.it
List-ID <linux-kernel.vger.kernel.org>
X-Mailing-List linux-kernel@vger.kernel.org
Approved robomod@news.nic.it
Lines 44
Organization linux.* mail to news gateway
X-Original-Cc nicolas.ferre@atmel.com, dan.carpenter@oracle.com, sergei.shtylyov@cogentembedded.com, mina86@mina86.com, andrzej.p@samsung.com, m.szyprowski@samsung.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Robert Baldyga <r.baldyga@samsung.com>
X-Original-Date Mon, 13 Jul 2015 11:03:49 +0200
X-Original-Message-ID <1436778234-12787-1-git-send-email-r.baldyga@samsung.com>
X-Original-Sender linux-kernel-owner@vger.kernel.org
Xref aioe.org linux.kernel:1182619

Show key headers only | View raw


Hello,

This patch set contains few small bugfixes found in usb gadget functions
and UDC drivers. The most important is the [1] as it fixes bug causing
BUG_ON() in f_fs driver. Remaining patches contain minor fixes.

[1] usb: gadget: ffs: call functionfs_unbind() if _ffs_func_bind() fails

Best regards,
Robert Baldyga

Changelog:

v3:
- Addressed comments from Sergei Shtylyov.
- Applied Acks form Nicolas Ferre and Michal Nazarewicz.

v2: https://lkml.org/lkml/2015/7/8/285
- Addressed comments from Dan Carpenter and Sergei Shtylyov.

v1: https://lkml.org/lkml/2015/7/7/445

Robert Baldyga (5):
  usb: gadget: ffs: call functionfs_unbind() if _ffs_func_bind() fails
  usb: gadget: midi: avoid redundant f_midi_set_alt() call
  usb: isp1760: udc: add missing usb_ep_set_maxpacket_limit()
  staging: emxx_udc: add missing usb_ep_set_maxpacket_limit()
  usb: gadget: atmel_usba_udc: add missing ret value check

 drivers/staging/emxx_udc/emxx_udc.c     | 3 ++-
 drivers/usb/gadget/function/f_fs.c      | 8 +++++++-
 drivers/usb/gadget/function/f_midi.c    | 4 ++++
 drivers/usb/gadget/udc/atmel_usba_udc.c | 4 ++++
 drivers/usb/isp1760/isp1760-udc.c       | 4 ++--
 5 files changed, 19 insertions(+), 4 deletions(-)

-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v3 0/5] usb: gadget: miscellaneous fixes Robert Baldyga <r.baldyga@samsung.com> - 2015-07-13 11:10 +0200
  [PATCH v3 3/5] usb: isp1760: udc: add missing  usb_ep_set_maxpacket_limit() Robert Baldyga <r.baldyga@samsung.com> - 2015-07-13 11:10 +0200
  [PATCH v3 2/5] usb: gadget: midi: avoid redundant f_midi_set_alt() call Robert Baldyga <r.baldyga@samsung.com> - 2015-07-13 11:10 +0200

csiph-web