lwip: Fix typo error

This patch fixes the typo error
in the xemacliteif.c file.

Signed-off-by: Kedareswara rao Appana <appanad@xilinx.com>
This commit is contained in:
Kedareswara rao Appana 2014-10-29 15:58:17 +05:30 committed by Suneel Garapati
parent 62e8d52031
commit ab6f0cad19
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ Change Log for lwip
getting "PHY not connected" error.
* Fix for CR 828796 - 2014.3 - AXI Ethernet - 1000BASEX interface not
working with echo server design on Zynq.
* Fix for CR 823736 - Fix typo error in xmaecliteif.c file.
2014-13-06
* Fix for CR 802558 - LWIP library doesn't compile
with XilKernel/FreeRTOS BSP.

View file

@ -501,7 +501,7 @@ static err_t low_level_init(struct netif *netif)
}
xemacliteif = mem_malloc(sizeof *xemacliteif);
if (xemac == NULL) {
if (xemacliteif == NULL) {
LWIP_DEBUGF(NETIF_DEBUG, ("xemacliteif_init: out of memory\r\n"));
return ERR_MEM;
}