Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-22 Thread Michael Grzeschik
On Thu, Mar 21, 2013 at 09:07:42AM +0800, Peter Chen wrote: > On Wed, Mar 20, 2013 at 10:30:47AM +0100, Michael Grzeschik wrote: > > On Wed, Mar 20, 2013 at 09:17:06AM +0800, Peter Chen wrote: > > > On Tue, Mar 19, 2013 at 01:02:59PM +0100, Michael Grzeschik wrote: > > > > On Tue, Mar 19, 2013 at 0

Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-20 Thread Peter Chen
On Wed, Mar 20, 2013 at 10:30:47AM +0100, Michael Grzeschik wrote: > On Wed, Mar 20, 2013 at 09:17:06AM +0800, Peter Chen wrote: > > On Tue, Mar 19, 2013 at 01:02:59PM +0100, Michael Grzeschik wrote: > > > On Tue, Mar 19, 2013 at 09:34:54AM +0800, Peter Chen wrote: > > > > On Mon, Mar 18, 2013 at 0

Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-20 Thread Michael Grzeschik
On Wed, Mar 20, 2013 at 09:17:06AM +0800, Peter Chen wrote: > On Tue, Mar 19, 2013 at 01:02:59PM +0100, Michael Grzeschik wrote: > > On Tue, Mar 19, 2013 at 09:34:54AM +0800, Peter Chen wrote: > > > On Mon, Mar 18, 2013 at 03:28:26PM +0100, Michael Grzeschik wrote: > > > > On Fri, Mar 08, 2013 at 0

Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-19 Thread Peter Chen
On Tue, Mar 19, 2013 at 01:02:59PM +0100, Michael Grzeschik wrote: > On Tue, Mar 19, 2013 at 09:34:54AM +0800, Peter Chen wrote: > > On Mon, Mar 18, 2013 at 03:28:26PM +0100, Michael Grzeschik wrote: > > > On Fri, Mar 08, 2013 at 05:54:37PM +0200, Alexander Shishkin wrote: > > > > Michael Grzeschik

Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-19 Thread Michael Grzeschik
On Tue, Mar 19, 2013 at 09:34:54AM +0800, Peter Chen wrote: > On Mon, Mar 18, 2013 at 03:28:26PM +0100, Michael Grzeschik wrote: > > On Fri, Mar 08, 2013 at 05:54:37PM +0200, Alexander Shishkin wrote: > > > Michael Grzeschik writes: > > > > > > > A static count of transfer descriptors was used ev

Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-18 Thread Peter Chen
On Mon, Mar 18, 2013 at 03:28:26PM +0100, Michael Grzeschik wrote: > On Fri, Mar 08, 2013 at 05:54:37PM +0200, Alexander Shishkin wrote: > > Michael Grzeschik writes: > > > > > A static count of transfer descriptors was used everywhere in the driver > > > with the fixed number 4. This patch adds

Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-18 Thread Michael Grzeschik
On Fri, Mar 08, 2013 at 05:54:37PM +0200, Alexander Shishkin wrote: > Michael Grzeschik writes: > > > A static count of transfer descriptors was used everywhere in the driver > > with the fixed number 4. This patch adds a define, named TD_COUNT, and > > replaces all users of this value. This way

Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-08 Thread Alexander Shishkin
Michael Grzeschik writes: > A static count of transfer descriptors was used everywhere in the driver > with the fixed number 4. This patch adds a define, named TD_COUNT, and > replaces all users of this value. This way its possible to have only one > parameter to change and limit the amount of td

Re: [PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-03 Thread Peter Chen
On Fri, Mar 01, 2013 at 03:42:25PM +0100, Michael Grzeschik wrote: > A static count of transfer descriptors was used everywhere in the driver > with the fixed number 4. This patch adds a define, named TD_COUNT, and > replaces all users of this value. This way its possible to have only one > paramet

[PATCH 3/5] usb: chipidea: udc: add the define TD_COUNT and fix all users

2013-03-01 Thread Michael Grzeschik
A static count of transfer descriptors was used everywhere in the driver with the fixed number 4. This patch adds a define, named TD_COUNT, and replaces all users of this value. This way its possible to have only one parameter to change and limit the amount of tds per transfer. Signed-off-by: Mich