Re: [PATCH] usb/gadget: initialize gadget functions helper befor functions & gadgets

2013-03-05 Thread Sebastian Andrzej Siewior
* Fengguang Wu | 2013-03-05 18:35:13 [+0800]: >Note that I still get this warning, however looks like an unrelated >issue: > >[ 602.536679] [ INFO: possible circular locking dependency detected ] >[ 602.536672] >[ 602.536679] == >[ 602.53667

Re: [PATCH] usb/gadget: initialize gadget functions helper befor functions & gadgets

2013-03-05 Thread Sebastian Andrzej Siewior
* Felipe Balbi | 2013-03-05 12:49:44 [+0200]: >> I kinda assumed that this was already fixed (i.e. a patch like this was sent) >> but it seems not to be that case. > >already in Greg's queue, cheers great… Sebastian -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in th

Re: [PATCH] usb/gadget: initialize gadget functions helper befor functions & gadgets

2013-03-05 Thread Felipe Balbi
On Mon, Mar 04, 2013 at 10:28:09PM +0100, Sebastian Andrzej Siewior wrote: > Fengguang Wu run into a kernel ops after he complied dummy_hcd and g_cdc > into the kernel. The problem was that u_serial was used by g_cdc before > u_serial was initialized. In the module case eveything is initialized in

Re: [PATCH] usb/gadget: initialize gadget functions helper befor functions & gadgets

2013-03-05 Thread Fengguang Wu
On Tue, Mar 05, 2013 at 05:57:34PM +0800, Fengguang Wu wrote: > On Mon, Mar 04, 2013 at 10:28:09PM +0100, Sebastian Andrzej Siewior wrote: > > Fengguang Wu run into a kernel ops after he complied dummy_hcd and g_cdc > > into the kernel. The problem was that u_serial was used by g_cdc before > > u_s

Re: [PATCH] usb/gadget: initialize gadget functions helper befor functions & gadgets

2013-03-05 Thread Fengguang Wu
On Mon, Mar 04, 2013 at 10:28:09PM +0100, Sebastian Andrzej Siewior wrote: > Fengguang Wu run into a kernel ops after he complied dummy_hcd and g_cdc > into the kernel. The problem was that u_serial was used by g_cdc before > u_serial was initialized. In the module case eveything is initialized in

Re: [PATCH] usb/gadget: initialize gadget functions helper befor functions & gadgets

2013-03-04 Thread Michal Nazarewicz
On Mon, Mar 04 2013, Sebastian Andrzej Siewior wrote: > Fengguang Wu run into a kernel ops after he complied dummy_hcd and g_cdc > into the kernel. The problem was that u_serial was used by g_cdc before > u_serial was initialized. In the module case eveything is initialized in > the correct order b

[PATCH] usb/gadget: initialize gadget functions helper befor functions & gadgets

2013-03-04 Thread Sebastian Andrzej Siewior
Fengguang Wu run into a kernel ops after he complied dummy_hcd and g_cdc into the kernel. The problem was that u_serial was used by g_cdc before u_serial was initialized. In the module case eveything is initialized in the correct order but if we compile it into the kernel we rely on Makefile order