[U-Boot] [PATCH v2 00/67] net: net subsystem ops cleanup

2012-11-21 Thread Tomas Hlavacek
This patchi series is a first stage of preparation of the net subsystem for the driver model. The idea of this patchset is: 1) Remove ops .init, .send, .recv and .halt from the eth_device struct. Add a sparate structure eth_ops which is ready for inclusion to DM core. 2) Replace dynamic init

Re: [U-Boot] [PATCH v2 00/67] net: net subsystem ops cleanup

2012-11-21 Thread Wolfgang Denk
Dear Tomas Hlavacek, In message 1353504238-11277-1-git-send-email-tmshl...@gmail.com you wrote: - Prove bisectability: MAKEALL arm (1/67 applied): Boards compiled: 274 MAKEALL arm (49/67 applied): Boards compiled: 274 MAKEALL arm (67/67 applied): Boards compiled: 274 To actually

Re: [U-Boot] [PATCH v2 00/67] net: net subsystem ops cleanup

2012-11-21 Thread Langer Thomas (LQDE RD ST PON SW)
Hello Tomas, sorry for not replying to V1 series already. I have a remark: 2) Replace dynamic init of ops function pointers by static struct. Some ARCHs don't have full relocation until now, which breaks the static initialization of pointers! Please see this: $ grep -r

Re: [U-Boot] [PATCH v2 00/67] net: net subsystem ops cleanup

2012-11-21 Thread Tomas Hlavacek
Hello Thomas! On Wed, Nov 21, 2012 at 7:45 PM, Langer Thomas (LQDE RD ST PON SW) thomas.lan...@lantiq.com wrote: Hello Tomas, sorry for not replying to V1 series already. I have a remark: 2) Replace dynamic init of ops function pointers by static struct. Some ARCHs don't have full