Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/de0b95762a048a6815cd019b3a0e1acf0dbd70f4 You should set ROOT_URL correctly, otherwise the web may not work correctly.

net: fec_mxc: Add initialized eth_device structure

This prevents access to the member of eth_device which is not initialized.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
CC: Ben Warren <biggerbadderben@gmail.com>
master
Nobuhiro Iwamatsu 15 years ago committed by Wolfgang Denk
parent 72c4c33e98
commit de0b95762a
  1. 1
      drivers/net/fec_mxc.c

@ -710,6 +710,7 @@ static int fec_probe(bd_t *bd)
puts("fec_mxc: not enough malloc memory\n");
return -ENOMEM;
}
memset(edev, 0, sizeof(*edev));
edev->priv = fec;
edev->init = fec_init;
edev->send = fec_send;

Loading…
Cancel
Save