Re: [U-Boot] [Turris Omnia] Btrfs support status?

2017-04-26 Thread Tomas Hlavacek
Hi Marek! On Tue, Apr 25, 2017 at 3:37 PM, Marek BehĂșn wrote: > Hello, > > the Turris Omnia router uses btrfs as the main filesystem, from which > it also loads kernel and dts. We have an implementation in our internal > u-boot >

[U-Boot] powerpc: P2020 relocation breaks with ELDK 5.5

2015-04-22 Thread Tomas Hlavacek
Hello! It seems that there might be some problem with relocation on P2020RDB-PC board when U-Boot is compiled with a relatively new toolchain. It is hard to detect because it seems that the relocation leaves only some constants on their old addresses but otherwise it works fine. I have a

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

2012-11-21 Thread Tomas Hlavacek
compiled: 623 MAKEALL powepc (67/67 applied): Boards compiled: 623 Tomas Hlavacek (67): net: dm: Pull out ops from struct eth_device net: 4xx_enet: Pull out init of struct eth_ops net: altera_tse: Pull out init of struct eth_ops net: dm9000x: Pull out init of struct eth_ops net

[U-Boot] [PATCH v2 05/67] net: armada100_fec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/armada100_fec.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 04/67] net: dm9000x: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/dm9000x.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 03/67] net: altera_tse: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/altera_tse.c | 14 +- 1 files changed, 9 insertions

[U-Boot] [PATCH v2 08/67] net: bfin_mac: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/bfin_mac.c | 14 +- 1 files changed, 9 insertions

[U-Boot] [PATCH v2 10/67] net: cs8900: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/cs8900.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 01/67] net: dm: Pull out ops from struct eth_device

2012-11-21 Thread Tomas Hlavacek
to the ops functions stored in a separate static structure. The structure then will be passed to the DM driver instance on driver init. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- arch/mips/cpu/mips32/au1x00/au1x00_eth.c | 10 +- arch/powerpc/cpu/mpc8220/fec.c |8

[U-Boot] [PATCH v2 09/67] net: calxedaxgmac: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/calxedaxgmac.c | 14 ++ 1 files changed, 10

[U-Boot] [PATCH v2 11/67] net: davinci_emac: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/davinci_emac.c | 14 +- 1 files changed, 9

[U-Boot] [PATCH v2 06/67] net: at91_emac: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/at91_emac.c | 14 +- 1 files changed, 9 insertions

[U-Boot] [PATCH v2 02/67] net: 4xx_enet: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/4xx_enet.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 14/67] net: dnet: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/dnet.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 15/67] net: e1000: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/e1000.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 13/67] net: designware: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/designware.c | 14 +- 1 files changed, 9 insertions

[U-Boot] [PATCH v2 07/67] net: ax88180: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ax88180.c | 13 + 1 files changed, 9 insertions

[U-Boot] [PATCH v2 12/67] net: dc2114x: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/dc2114x.c | 14 +- 1 files changed, 9 insertions

[U-Boot] [PATCH v2 16/67] net: eepro100: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/eepro100.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 28/67] net: mcffec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/mcffec.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 23/67] net: fsl_mcdmafec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/fsl_mcdmafec.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 30/67] net: mvgbe: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/mvgbe.c | 14 +- 1 files changed, 9 insertions(+), 5

[U-Boot] [PATCH v2 31/67] net: mpc512x_fec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/mpc512x_fec.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 36/67] net: pcnet: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/pcnet.c | 13 - 1 files changed, 8 insertions(+), 5

[U-Boot] [PATCH v2 35/67] net: ns8382x: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ns8382x.c | 13 + 1 files changed, 9 insertions

[U-Boot] [PATCH v2 39/67] net: rtl8169: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/rtl8169.c | 13 + 1 files changed, 9 insertions

[U-Boot] [PATCH v2 37/67] net: plb2800_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/plb2800_eth.c | 11 +++ 1 files changed, 7 insertions

[U-Boot] [PATCH v2 33/67] net: ne2000: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ne2000_base.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 34/67] net: npe: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/npe/npe.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 18/67] net: ep93xx_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ep93xx_eth.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 22/67] net: greth.c: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/greth.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 20/67] net: fec_mxc: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/fec_mxc.c | 15 ++- 1 files changed, 10 insertions

[U-Boot] [PATCH v2 21/67] net: ftgmac100: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ftgmac100.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 19/67] net: ethoc: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ethoc.c | 14 +- 1 files changed, 9 insertions(+), 5

[U-Boot] [PATCH v2 25/67] net: ks8695eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ks8695eth.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 45/67] net: xilinx_axi_emac: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/xilinx_axi_emac.c | 15 ++- 1 files changed, 10

[U-Boot] [PATCH v2 40/67] net: smc91111: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/smc9.c | 14 +- 1 files changed, 9 insertions

[U-Boot] [PATCH v2 43/67] net: tsi108_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/tsi108_eth.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 41/67] net: smc911x: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/smc911x.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 47/67] net: zynq_gem: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/zynq_gem.c | 14 +- 1 files changed, 9 insertions

[U-Boot] [PATCH v2 46/67] net: xilinx_emaclite: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/xilinx_emaclite.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 54/67] net: mpc85xx_fec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- arch/powerpc/cpu/mpc85xx/ether_fcc.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 52/67] net: mpc8260_fec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- arch/powerpc/cpu/mpc8260/ether_fcc.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 44/67] net: uli526x: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/uli526x.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 57/67] net: mpc8xx_fec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- arch/powerpc/cpu/mpc8xx/fec.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 56/67] net: db64360/mv_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- board/Marvell/db64360/mv_eth.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 24/67] net: inca-ip_sw: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/inca-ip_sw.c | 11 +++ 1 files changed, 7 insertions

[U-Boot] [PATCH v2 17/67] net: enc28j60: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/enc28j60.c | 14 +- 1 files changed, 9 insertions

[U-Boot] [PATCH v2 26/67] net: lan91c96: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/lan91c96.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 29/67] net: mpc5xxx_fec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/mpc5xxx_fec.c | 11 +++ 1 files changed, 7 insertions

[U-Boot] [PATCH v2 53/67] net: mpc8260_scc: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- arch/powerpc/cpu/mpc8260/ether_scc.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 63/67] net: fm_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/fm/eth.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 66/67] net: usb: asix: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/usb/eth/asix.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 55/67] net: mpc8xx_scc: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- arch/powerpc/cpu/mpc8xx/scc.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 65/67] net: qe: uec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/qe/uec.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 51/67] net: mpc8220_fec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- arch/powerpc/cpu/mpc8220/fec.c | 11 +++ 1 files changed, 7

[U-Boot] [PATCH v2 67/67] net: usb: smsc95xx: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/usb/eth/smsc95xx.c | 14 +- 1 files changed, 9

[U-Boot] [PATCH v2 58/67] net: db64460/mv_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- board/Marvell/db64460/mv_eth.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 59/67] net: cpci750/mv_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- board/esd/cpci750/mv_eth.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 60/67] net: evb64260: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- board/evb64260/eth.c | 13 + 1 files changed, 9 insertions(+), 4

[U-Boot] [PATCH v2 61/67] net: p3mx/mv_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- board/prodrive/p3mx/mv_eth.c | 12 1 files changed, 8

[U-Boot] [PATCH v2 49/67] net: sh_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/sh_eth.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 38/67] net: rtl8139: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/rtl8139.c | 18 +++--- 1 files changed, 11

[U-Boot] [PATCH v2 48/67] net: xilinx_ll_temac: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/xilinx_ll_temac.c | 27 --- 1 files

[U-Boot] [PATCH v2 32/67] net: natsemi: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/natsemi.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 50/67] net: au1x00_eth: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- arch/mips/cpu/mips32/au1x00/au1x00_eth.c | 12 1 files changed

[U-Boot] [PATCH v2 42/67] net: tsec: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/tsec.c | 18 +++--- 1 files changed, 11 insertions

[U-Boot] [PATCH v2 62/67] net: cpsw: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/cpsw.c | 12 1 files changed, 8 insertions(+), 4

[U-Boot] [PATCH v2 64/67] net: ftmac100: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ftmac100.c | 12 1 files changed, 8 insertions

[U-Boot] [PATCH v2 27/67] net: macb: Pull out init of struct eth_ops

2012-11-21 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/macb.c | 14 +- 1 files changed, 9 insertions(+), 5

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

Re: [U-Boot] [RFC PATCH 00/50] net: net subsystem ops cleanup

2012-11-19 Thread Tomas Hlavacek
Hello Joe! On Wed, Nov 14, 2012 at 1:06 AM, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Tomas, On Sat, Nov 3, 2012 at 6:23 PM, Tomas Hlavacek tmshl...@gmail.com wrote: Dear Wolfgang, On Sat, Nov 3, 2012 at 4:09 PM, Wolfgang Denk w...@denx.de wrote: Dear Tomas Hlavacek, In message

Re: [U-Boot] [RFC PATCH 00/50] net: net subsystem ops cleanup

2012-11-03 Thread Tomas Hlavacek
Dear Wolfgang, On Sat, Nov 3, 2012 at 4:09 PM, Wolfgang Denk w...@denx.de wrote: Dear Tomas Hlavacek, In message 1351876722-5183-1-git-send-email-tmshl...@gmail.com you wrote: This patchset is a first stage of preparation of the net subsystem for the driver model. The idea of this patchset

[U-Boot] [RFC PATCH 00/50] net: net subsystem ops cleanup

2012-11-02 Thread Tomas Hlavacek
of ops function pointers by static struct. 3) Do minor style cleanup. Tomas Hlavacek (50): net: dm: Pull out ops from struct eth_device net: 4xx_enet: Pull out init of struct eth_ops net: altera_tse: Pull out init of struct eth_ops net: dm9000x: Pull out init of struct eth_ops net

[U-Boot] [RFC PATCH 02/50] net: 4xx_enet: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/4xx_enet.c | 12 1 file changed, 8 insertions(+), 4

[U-Boot] [RFC PATCH 05/50] net: armada100_fec: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/armada100_fec.c | 12 1 file changed, 8 insertions

[U-Boot] [RFC PATCH 03/50] net: altera_tse: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/altera_tse.c | 14 +- 1 file changed, 9 insertions

[U-Boot] [RFC PATCH 04/50] net: dm9000x: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/dm9000x.c | 12 1 file changed, 8 insertions(+), 4

[U-Boot] [RFC PATCH 06/50] net: at91_emac: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/at91_emac.c | 14 +- 1 file changed, 9 insertions

[U-Boot] [RFC PATCH 08/50] net: bfin_mac: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/bfin_mac.c | 14 +- 1 file changed, 9 insertions

[U-Boot] [RFC PATCH 07/50] net: ax88180: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ax88180.c | 13 + 1 file changed, 9 insertions(+), 4

[U-Boot] [RFC PATCH 01/50] net: Pull out ops from struct eth_device

2012-11-02 Thread Tomas Hlavacek
to the ops functions stored in a separate static structure. The structure then will be passed to the DM driver instance on driver init. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- board/davinci/da8xxevm/da830evm.c |2 +- drivers/net/4xx_enet.c|8 drivers/net

[U-Boot] [RFC PATCH 15/50] net: dnet: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/dnet.c | 12 1 file changed, 8 insertions(+), 4

[U-Boot] [RFC PATCH 11/50] net: cs8900: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/cs8900.c | 12 1 file changed, 8 insertions(+), 4

[U-Boot] [RFC PATCH 10/50] net: cpsw: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/cpsw.c | 14 +- 1 file changed, 9 insertions(+), 5

[U-Boot] [RFC PATCH 09/50] net: calxedaxgmac: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/calxedaxgmac.c | 14 ++ 1 file changed, 10

[U-Boot] [RFC PATCH 14/50] net: designware: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/designware.c | 14 +- 1 file changed, 9 insertions

[U-Boot] [RFC PATCH 19/50] net: ep93xx_eth: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ep93xx_eth.c | 12 1 file changed, 8 insertions

[U-Boot] [RFC PATCH 20/50] net: ethoc: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ethoc.c | 14 +- 1 file changed, 9 insertions(+), 5

[U-Boot] [RFC PATCH 21/50] net: fec_mxc: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/fec_mxc.c | 15 ++- 1 file changed, 10 insertions

[U-Boot] [RFC PATCH 18/50] net: enc28j60: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/enc28j60.c | 14 +- 1 file changed, 9 insertions

[U-Boot] [RFC PATCH 12/50] net: davinci_emac: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/davinci_emac.c | 14 +- 1 file changed, 9 insertions

[U-Boot] [RFC PATCH 17/50] net: eepro100: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/eepro100.c | 12 1 file changed, 8 insertions(+), 4

[U-Boot] [RFC PATCH 23/50] net: greth.c: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/greth.c | 12 1 file changed, 8 insertions(+), 4

[U-Boot] [RFC PATCH 13/50] net: dc2114x: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/dc2114x.c | 14 +- 1 file changed, 9 insertions

[U-Boot] [RFC PATCH 22/50] net: ftgmac100: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/ftgmac100.c | 12 1 file changed, 8 insertions

[U-Boot] [RFC PATCH 16/50] net: e1000: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/e1000.c | 12 1 file changed, 8 insertions(+), 4

[U-Boot] [RFC PATCH 37/50] net: pcnet: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/pcnet.c | 13 - 1 file changed, 8 insertions(+), 5

[U-Boot] [RFC PATCH 24/50] net: fsl_mcdmafec: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/fsl_mcdmafec.c | 12 1 file changed, 8 insertions

[U-Boot] [RFC PATCH 27/50] net: lan91c96: Pull out init of struct eth_ops

2012-11-02 Thread Tomas Hlavacek
Add static struct eth_ops and set ops function pointers statically. Remove setting eth_ops members dynamically. This is a step toward converting the driver for DM. Signed-off-by: Tomas Hlavacek tmshl...@gmail.com --- drivers/net/lan91c96.c | 12 1 file changed, 8 insertions(+), 4

  1   2   >