Re: [PATCH] usb: gadget: fix the sequence modules are built

2014-07-16 Thread Andrzej Pietrasiewicz
W dniu 16.07.2014 21:40, Felipe Balbi pisze: Hi, On Tue, Jul 15, 2014 at 01:09:23PM +0200, Andrzej Pietrasiewicz wrote: If gadget g_*.ko modules are built-in their initialization happens before libcomposite is initialized. This results in e.g. g_ether not initializing if compiled-in. This patch

Re: [PATCH] usb: gadget: fix the sequence modules are built

2014-07-16 Thread Felipe Balbi
Hi, On Tue, Jul 15, 2014 at 01:09:23PM +0200, Andrzej Pietrasiewicz wrote: > If gadget g_*.ko modules are built-in their initialization happens before > libcomposite is initialized. This results in e.g. g_ether not initializing > if compiled-in. This patch fixes the order modules are > built, so t

[PATCH] usb: gadget: fix the sequence modules are built

2014-07-15 Thread Andrzej Pietrasiewicz
If gadget g_*.ko modules are built-in their initialization happens before libcomposite is initialized. This results in e.g. g_ether not initializing if compiled-in. This patch fixes the order modules are built, so that they are initialized in proper order when built-in. Signed-off-by: Andrzej Piet