Re: Clarification for the use of additional fields in the message body

2015-07-07 Thread SF Markus Elfring
From: Markus Elfring elfr...@users.sourceforge.net Date: Sat, 27 Jun 2015 15:56:57 +0200 Why is this in the body of the email? Does the canonical patch format support to preserve specific details about a shown commit by specification of fields like Date and From in the message body?

Re: Clarification for the use of additional fields in the message body

2015-07-07 Thread SF Markus Elfring
I can't remember ever changing or explicitly preserving the commit date. I don't think I care enough. Would any more software developers and maintainers like to share their experiences around such details? When do commit timestamps become relevant as a documentation item for contribution

[PATCH] staging: comedi: cb_pcimdas: add external analog output ranges

2015-07-07 Thread Ian Abbott
The analog output range is not programmable, but the ranges for each of the two analog output channels are settable via jumpers. These jumper settings are not readable by the driver. The driver provides a range table containing all the possible internal ranges (+/-10V, +/-5V, 0-10V, 0-5V) to

Re: [PATCH 3/5] usb: isp1760: udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Robert Baldyga
On 07/07/2015 05:01 PM, Dan Carpenter wrote: On Tue, Jul 07, 2015 at 04:02:51PM +0200, Robert Baldyga wrote: Should use usb_ep_set_maxpacket_limit instead of setting maxpacket value manually. This is a behavior change, right, since now we're setting ep-ep.maxpacket and ep-ep.maxpacket_limit

Re: [PATCH 1/5] usb: gadget: ffs: call functionfs_unbind() if _ffs_func_bind() fails

2015-07-07 Thread Robert Baldyga
On 07/07/2015 04:53 PM, Dan Carpenter wrote: On Tue, Jul 07, 2015 at 04:02:49PM +0200, Robert Baldyga wrote: diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c index 6e7be91..966b214 100644 --- a/drivers/usb/gadget/function/f_fs.c +++

[PATCH] staging: comedi: use CAP_SYS_ADMIN instead of CAP_NET_ADMIN

2015-07-07 Thread Ian Abbott
If the comedi module has been loaded with the comedi_num_legacy_minors module parameter set to a non-zero value, some reserved comedi devices get created. These can be attached to a low-level comedi driver using the `COMEDI_DEVCONFIG` ioctl command, which checks for the `CAP_SYS_ADMIN`

Re: Clarification for the use of additional fields in the message body

2015-07-07 Thread Frans Klaver
On Tue, Jul 7, 2015 at 9:54 AM, SF Markus Elfring elfr...@users.sourceforge.net wrote: No need to try and preserve it. I find that it might occasionally help to share and keep the record on timestamps about the evolution for an original update suggestion. I think that as far as these kernel

Re: [PATCH 0/4] staging: wilc1000: cover letter

2015-07-07 Thread Luis de Bethencourt
On Mon, Jul 06, 2015 at 07:22:09PM -0700, Greg Kroah-Hartman wrote: On Fri, Jun 26, 2015 at 04:43:44PM +0200, Luis de Bethencourt wrote: Patches to be applied on top of https://patchwork.kernel.org/patch/6655831/ I don't use patchwork, and when on an airplane with no internet access (like

Re: [PATCH] Alternate rtl8192cu driver.

2015-07-07 Thread P. Varet
On 07/06/2015 07:13 PM, Greg KH wrote: But, have you tried the in-kernel driver for this device? Hi Greg! Yes, I have. Sorry for not making this clear. The symptoms are as described in bug #57171. I haven't tested it again in recent months but I can do that for you when I'm back home if you

Re: Clarification for the use of additional fields in the message body

2015-07-07 Thread Frans Klaver
On Tue, Jul 7, 2015 at 8:21 AM, SF Markus Elfring elfr...@users.sourceforge.net wrote: From: Markus Elfring elfr...@users.sourceforge.net Date: Sat, 27 Jun 2015 15:56:57 +0200 Why is this in the body of the email? Does the canonical patch format support to preserve specific details about a

Re: [PATCHv3 08/16] staging: vme_user: provide DMA functionality

2015-07-07 Thread Alessio Igor Bogani
Hi Dmitry, On 6 July 2015 at 19:24, Dmitry Kalinkin dmitry.kalin...@gmail.com wrote: [...] I'm not a VME expert, but it seems that VME windows are a quiet limited resource no matter how you allocate your resources. Theoretically we could put up to 32 different boards in a single crate, so

[PATCH 3/5] staging: sm7xxfb: use kernel commandline

2015-07-07 Thread Sudip Mukherjee
We were only using the kernel commandline to set the mode if this driver is builtin, but when it is built as a module we were not having any way to set the mode. Start using commandline even if it is built as a module. Signed-off-by: Sudip Mukherjee su...@vectorindia.org ---

[PATCH 4/5] staging: sm7xxfb: define new macros

2015-07-07 Thread Sudip Mukherjee
Define and use some new macros to work with different situations based on little-endian and big-endian. Signed-off-by: Sudip Mukherjee su...@vectorindia.org --- drivers/staging/sm7xxfb/sm7xx.h | 19 drivers/staging/sm7xxfb/sm7xxfb.c | 48 ---

[PATCH 5/5] staging: sm7xxfb: usr fb_read and fb_write

2015-07-07 Thread Sudip Mukherjee
Now since the Big-Endian and Little-Endian based calculations are moved into a macro we can make fb_read() and fb_write() common for both Little-Endian and Big-Endian. Signed-off-by: Sudip Mukherjee su...@vectorindia.org --- drivers/staging/sm7xxfb/sm7xxfb.c | 4 1 file changed, 4

[PATCH 2/5] staging: sm7xxfb: fix error handling

2015-07-07 Thread Sudip Mukherjee
We were checking smtc_regbaseaddress and that too at a place where it can never be NULL. Real check should be on sfb-lfb immediately after we do ioremap. Signed-off-by: Sudip Mukherjee su...@vectorindia.org --- drivers/staging/sm7xxfb/sm7xxfb.c | 15 --- 1 file changed, 8

[PATCH 1/5] staging: sm7xxfb: remove unused macros

2015-07-07 Thread Sudip Mukherjee
These macros were only defined but not used anywhere. Signed-off-by: Sudip Mukherjee su...@vectorindia.org --- drivers/staging/sm7xxfb/sm7xx.h | 20 1 file changed, 20 deletions(-) diff --git a/drivers/staging/sm7xxfb/sm7xx.h b/drivers/staging/sm7xxfb/sm7xx.h index

[PATCH 0/5] staging: sm7xxfb: few changes

2015-07-07 Thread Sudip Mukherjee
Few more changes in sm7xxfb, and hopefully the last changes before I send the patch to move it to drivers/video/fbdev. Has been tested with: 1) fbtest available at https://git.kernel.org/cgit/linux/kernel/git/geert/fbtest.git/ 2) read and write tested on Little-Endian system regards sudip

Re: Clarification for the use of additional fields in the message body

2015-07-07 Thread SF Markus Elfring
The date, as far as I know, is ignored. It is the commit date, not the authoring date, and once your patch is applied by a maintainer (i.e. committed), the date gets reset anyway. Thanks for your feedback. No need to try and preserve it. I find that it might occasionally help to share and

Re: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Stephen Hemminger
On Mon, 6 Jul 2015 07:47:29 -0700 Dexuan Cui de...@microsoft.com wrote: Hyper-V VM sockets (hvsock) supplies a byte-stream based communication mechanism between the host and a guest. It's kind of TCP over VMBus, but the transportation layer (VMBus) is much simpler than IP. With Hyper-V VM

Re: [PATCH] Warnings : Fixed 80 character length warning in rtw_ap.c

2015-07-07 Thread Valdis . Kletnieks
On Mon, 06 Jul 2015 21:53:26 -0400, Sreenath Madasu said: When the checkpatch.pl script was run, it showed lines with length more than 80 characters in rtw_ap.c file. Fixed line number 382 by breaking it up into two lines within 80 characters. - stainfo_offset =

staging: rtl8192e: function naming cleanup

2015-07-07 Thread Mateusz Kulikowski
Hi, One of TODOs for driver I'm working on is cleanup of function names; I'm working (amongst other things) on that and would like to know if and how would you like it submitted: 1 As a one big patch for whole driver (IMO it will be very hard to review unless you have scripts to verify it)

Re: staging: rtl8192e: function naming cleanup

2015-07-07 Thread Greg KH
On Tue, Jul 07, 2015 at 07:35:24PM +0200, Mateusz Kulikowski wrote: Hi, One of TODOs for driver I'm working on is cleanup of function names; I'm working (amongst other things) on that and would like to know if and how would you like it submitted: 1 As a one big patch for whole driver

Re: [PATCH] Alternate rtl8192cu driver.

2015-07-07 Thread P. Varet
On 07/07/15 11:54, Dan Carpenter wrote: https://bugzilla.kernel.org/show_bug.cgi?id=57171 This bug is a confusing mix of issues and it seems to be fixed. Just use network manager. Hi Dan! Thank you for your reply! I gave it another try, then. The behavior was the same as described before,

Re: [PATCH] Warnings : Fixed 80 character length warning in rtw_ap.c

2015-07-07 Thread Joe Perches
On Tue, 2015-07-07 at 15:32 -0400, valdis.kletni...@vt.edu wrote: All: Is it time to kill that checkpatch test, or hide it behind a non-default flag, to prevent code churn? shrug I'm not an 80 column zealot. This is for staging isn't it? Code churn there is expected and somewhat desired. A

Re: [PATCH] Alternate rtl8192cu driver.

2015-07-07 Thread Greg KH
On Tue, Jul 07, 2015 at 11:37:55PM +0200, P. Varet wrote: On 07/07/15 11:54, Dan Carpenter wrote: https://bugzilla.kernel.org/show_bug.cgi?id=57171 This bug is a confusing mix of issues and it seems to be fixed. Just use network manager. Hi Dan! Thank you for your reply! I gave it

Re: Clarification for the use of additional fields in the message body

2015-07-07 Thread Julian Calaby
Hi Markus, On Wed, Jul 8, 2015 at 2:15 AM, SF Markus Elfring elfr...@users.sourceforge.net wrote: I can't remember ever changing or explicitly preserving the commit date. I don't think I care enough. Would any more software developers and maintainers like to share their experiences around

Re: Clarification for the use of additional fields in the message body

2015-07-07 Thread SF Markus Elfring
I think that as far as these kernel mailing lists are concerned, the date of the update suggestion is the date on which you submitted the patch, rather than the date you originally committed it to your local tree. I imagine that there are committers who would like to keep corresponding

Re: [PATCHv3 08/16] staging: vme_user: provide DMA functionality

2015-07-07 Thread Alessio Igor Bogani
Hi Dmitry, On 7 July 2015 at 12:47, Dmitry Kalinkin dmitry.kalin...@gmail.com wrote: [...] The API I had in mind would have only vme_master_read and vme_master_write that would take absolute addresses (not relative to any window). These variants of access functions would then try to reuse any

Re: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Paul Bolle
Just two nits. On ma, 2015-07-06 at 07:47 -0700, Dexuan Cui wrote: --- /dev/null +++ b/net/hv_sock/Kconfig +config HYPERV_SOCK + tristate Microsoft Hyper-V Socket (EXPERIMENTAL) + depends on HYPERV + default m + help + Hyper-V Socket is a socket protocol similar to

RE: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Dexuan Cui
-Original Message- From: Olaf Hering [mailto:o...@aepfle.de] Sent: Tuesday, July 7, 2015 18:10 To: Dexuan Cui; Paul Bolle Cc: gre...@linuxfoundation.org; da...@davemloft.net; net...@vger.kernel.org; linux-ker...@vger.kernel.org; driverdev- de...@linuxdriverproject.org;

Re: [RESEND] mfd: rtsx: add support for rts522A

2015-07-07 Thread Lee Jones
On Mon, 29 Jun 2015, micky_ch...@realsil.com.cn wrote: From: Micky Ching micky_ch...@realsil.com.cn rts522a(rts5227s) is derived from rts5227, and mainly same with rts5227. Add it to file mfd/rts5227.c to support this chip. Signed-off-by: Micky Ching micky_ch...@realsil.com.cn ---

Re: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Paul Bolle
On di, 2015-07-07 at 10:20 +, Dexuan Cui wrote: OK, removing the line seems better than 'default n', though both reproduce the same # CONFIG_HYPERV_SOCK is not set. Speaking from memory (so chances are I'm forgetting some silly detail) that is because # CONFIG_FOO is not set will be

Re: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Olaf Hering
On Tue, Jul 07, Paul Bolle wrote: On ma, 2015-07-06 at 07:47 -0700, Dexuan Cui wrote: --- /dev/null +++ b/net/hv_sock/Kconfig +config HYPERV_SOCK + tristate Microsoft Hyper-V Socket (EXPERIMENTAL) + depends on HYPERV + default m It's a bit odd to advise to say N if one is

Re: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Olaf Hering
On Tue, Jul 07, Dexuan Cui wrote: OK, removing the line seems better than 'default n', though both reproduce the same # CONFIG_HYPERV_SOCK is not set. Perhaps default VMBUS (or whatever syntax is needed) may be the way to enable it conditionally. Olaf

Re: [PATCHv3 08/16] staging: vme_user: provide DMA functionality

2015-07-07 Thread Dmitry Kalinkin
Hi Alessio, [Sorry for double post] On 07 Jul 2015, at 10:08, Alessio Igor Bogani alessioigorbog...@gmail.com wrote: Hi Dmitry, On 6 July 2015 at 19:24, Dmitry Kalinkin dmitry.kalin...@gmail.com wrote: [...] I'm not a VME expert, but it seems that VME windows are a quiet limited

[PATCH] staging: rtl8188eu: core: rtw_mlme: remove space before ','

2015-07-07 Thread Sunil Shahu
Fix coding style error by removing spaces before ',' as suggested by checkpatch.pl script. Signed-off-by: Sunil Shahu shsh...@gmail.com --- drivers/staging/rtl8188eu/core/rtw_mlme.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git

Re: [PATCH] Alternate rtl8192cu driver.

2015-07-07 Thread Dan Carpenter
On Tue, Jul 07, 2015 at 11:16:04AM +0200, P. Varet wrote: On 07/06/2015 07:13 PM, Greg KH wrote: But, have you tried the in-kernel driver for this device? Hi Greg! Yes, I have. Sorry for not making this clear. The symptoms are as described in bug #57171. I haven't tested it again in recent

RE: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Dexuan Cui
-Original Message- From: Paul Bolle Sent: Tuesday, July 7, 2015 17:38 To: Dexuan Cui Subject: Re: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature Just two nits. On ma, 2015-07-06 at 07:47 -0700, Dexuan Cui wrote: --- /dev/null +++ b/net/hv_sock/Kconfig +config

Re: [RESEND] mfd: rtsx: add support for rts522A

2015-07-07 Thread 敬锐
On 07/07/2015 07:46 PM, Lee Jones wrote: On Mon, 29 Jun 2015, micky_ch...@realsil.com.cn wrote: From: Micky Ching micky_ch...@realsil.com.cn rts522a(rts5227s) is derived from rts5227, and mainly same with rts5227. Add it to file mfd/rts5227.c to support this chip. Signed-off-by: Micky

Re: [PATCH] Warnings : Fixed 80 character length warning in rtw_ap.c

2015-07-07 Thread Sreenath Madasu
The kernelnewbies.org guide said For your first patch, only pick one warning. That is the reason why I fixed one warning. Thanks Sreenath On Tue, Jul 07, 2015 at 03:32:50PM -0400, valdis.kletni...@vt.edu wrote: On Mon, 06 Jul 2015 21:53:26 -0400, Sreenath Madasu said: When the checkpatch.pl

Re: [PATCH] Warnings : Fixed 80 character length warning in rtw_ap.c

2015-07-07 Thread Joe Perches
On Tue, 2015-07-07 at 22:08 -0400, valdis.kletni...@vt.edu wrote: On Tue, 07 Jul 2015 13:38:47 -0700, Joe Perches said: The longest line in this file is 158 chars, that's probably excessive, awk shows 35 lines 80 chars. That doesn't count tabs. Checkpatch throws 98 warnings. Yup,

[PATCH] STAGING SUBSYSTEM rtl8188eu driver : Fixed 80 character length warning in rtw_ap.c

2015-07-07 Thread Sreenath Madasu
When the checkpatch.pl script was run, it showed lines with length more than 80 characters in rtw_ap.c file. Fixed line number 382 by breaking it up into two lines within 80 characters. Signed-off-by: Sreenath Madasu sreenath.mad...@gmail.com --- drivers/staging/rtl8188eu/core/rtw_ap.c | 3 ++-

Re: [PATCH] Warnings : Fixed 80 character length warning in rtw_ap.c

2015-07-07 Thread Valdis . Kletnieks
On Tue, 07 Jul 2015 21:08:10 -0400, Sreenath Madasu said: The kernelnewbies.org guide said For your first patch, only pick one warning. That is the reason why I fixed one warning. They mean don't fix lines over 80 characters *and* missing-blank warnings in the same patch. pgpoBhFQVf2aM.pgp

Re: [PATCH] Warnings : Fixed 80 character length warning in rtw_ap.c

2015-07-07 Thread Valdis . Kletnieks
On Tue, 07 Jul 2015 13:38:47 -0700, Joe Perches said: The longest line in this file is 158 chars, that's probably excessive, awk shows 35 lines 80 chars. That doesn't count tabs. Checkpatch throws 98 warnings. pgpyA7aIF0_ni.pgp Description: PGP signature

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

2015-07-07 Thread Robert Baldyga
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. Best regards, Robert Baldyga [1] usb: gadget: ffs: call functionfs_unbind() if

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

2015-07-07 Thread Robert Baldyga
Function ffs_do_functionfs_bind() calls functionfs_bind() which allocates usb request and increments refcounts. These things needs to be cleaned up by if further steps of initialization fail by calling functionfs_unbind(). Signed-off-by: Robert Baldyga r.bald...@samsung.com ---

[PATCH 5/5] usb: gadget: atmel_usba_udc: add missing ret value check

2015-07-07 Thread Robert Baldyga
Add missing return value check. In case of error print debug message and return error code. Signed-off-by: Robert Baldyga r.bald...@samsung.com --- drivers/usb/gadget/udc/atmel_usba_udc.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/usb/gadget/udc/atmel_usba_udc.c

Re: [PATCH 4/5] staging: emxx_udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Sergei Shtylyov
Hello. On 7/7/2015 5:02 PM, Robert Baldyga wrote: Should use usb_ep_set_maxpacket_limit instead of setting maxpacket value manually. Signed-off-by: Robert Baldyga r.bald...@samsung.com --- drivers/staging/emxx_udc/emxx_udc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff

Re: Clarification for the use of additional fields in the message body

2015-07-07 Thread Frans Klaver
On Tue, Jul 7, 2015 at 1:53 PM, SF Markus Elfring elfr...@users.sourceforge.net wrote: I think that as far as these kernel mailing lists are concerned, the date of the update suggestion is the date on which you submitted the patch, rather than the date you originally committed it to your

[PATCH 2/5] usb: gadget: midi: avoid redundant f_midi_set_alt() call

2015-07-07 Thread Robert Baldyga
Function midi registers two interfaces with single set_alt() function which means that f_midi_set_alt() is called twice when configuration is set. That means that endpoint initialization and ep request allocation is done two times. To avoid this problem we do such things only once, for interface

[PATCH 4/5] staging: emxx_udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Robert Baldyga
Should use usb_ep_set_maxpacket_limit instead of setting maxpacket value manually. Signed-off-by: Robert Baldyga r.bald...@samsung.com --- drivers/staging/emxx_udc/emxx_udc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/emxx_udc/emxx_udc.c

[PATCH 3/5] usb: isp1760: udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Robert Baldyga
Should use usb_ep_set_maxpacket_limit instead of setting maxpacket value manually. Signed-off-by: Robert Baldyga r.bald...@samsung.com --- drivers/usb/isp1760/isp1760-udc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/isp1760/isp1760-udc.c

Re: [PATCHv3 08/16] staging: vme_user: provide DMA functionality

2015-07-07 Thread Dmitry Kalinkin
On 07 Jul 2015, at 15:51, Alessio Igor Bogani alessioigorbog...@gmail.com wrote: snip Current VME stack links windows not to the boards, but to device drivers. Driver could potentially minimise window usage within it’s scope (any sort of window reusing, like mapping whole A16 once to be

RE: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Dexuan Cui
-Original Message- From: Stephen Hemminger Sent: Wednesday, July 8, 2015 2:31 Subject: Re: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature On Mon, 6 Jul 2015 07:47:29 -0700 Dexuan Cui de...@microsoft.com wrote: Hyper-V VM sockets (hvsock) supplies a byte-stream based

RE: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature

2015-07-07 Thread Dexuan Cui
-Original Message- From: Olaf Hering Sent: Tuesday, July 7, 2015 18:59 Subject: Re: [PATCH 6/7] hvsock: introduce Hyper-V VM Sockets feature On Tue, Jul 07, Dexuan Cui wrote: OK, removing the line seems better than 'default n', though both reproduce the same #

Re: [PATCH 3/5] usb: isp1760: udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Dan Carpenter
On Tue, Jul 07, 2015 at 04:02:51PM +0200, Robert Baldyga wrote: Should use usb_ep_set_maxpacket_limit instead of setting maxpacket value manually. This is a behavior change, right, since now we're setting ep-ep.maxpacket and ep-ep.maxpacket_limit where before we only set the first. I don't

Re: [PATCH] scsi: storvsc: make INQUIRY response SPC-compliant

2015-07-07 Thread Vitaly Kuznetsov
KY Srinivasan k...@microsoft.com writes: -Original Message- From: Christoph Hellwig [mailto:h...@infradead.org] Sent: Friday, July 3, 2015 9:19 AM To: Vitaly Kuznetsov Cc: linux-s...@vger.kernel.org; Long Li; KY Srinivasan; Haiyang Zhang; James E.J. Bottomley;

Re: [PATCH 1/5] usb: gadget: ffs: call functionfs_unbind() if _ffs_func_bind() fails

2015-07-07 Thread Dan Carpenter
On Tue, Jul 07, 2015 at 04:02:49PM +0200, Robert Baldyga wrote: diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c index 6e7be91..966b214 100644 --- a/drivers/usb/gadget/function/f_fs.c +++ b/drivers/usb/gadget/function/f_fs.c @@ -2897,11 +2897,19 @@

Re: [PATCH 4/5] staging: emxx_udc: add missing usb_ep_set_maxpacket_limit()

2015-07-07 Thread Dan Carpenter
On Tue, Jul 07, 2015 at 04:02:52PM +0200, Robert Baldyga wrote: Should use usb_ep_set_maxpacket_limit instead of setting maxpacket value manually. Same question. regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org