Stephen Rothwell wrote: > Hi all, > > Changes since 20081211: If hplan is built-in, this build error can happen: build-r7084.out:8390p.c:(.text+0xfd9aa): undefined reference to `ei_start_xmit' build-r7084.out:8390p.c:(.text+0xfd9b6): undefined reference to `ei_get_stats' build-r7084.out:8390p.c:(.text+0xfd9c6): undefined reference to `ei_set_multicast_list' since hplan uses 8390p.c, which uses lib8390.c, but the latter always uses: #ifdef CONFIG_COMPAT_NET_DEV_OPS dev->hard_start_xmit = ei_start_xmit; dev->get_stats = ei_get_stats; dev->set_multicast_list = ei_set_multicast_list; dev->tx_timeout = __ei_tx_timeout; #endif However, those ei_* functions should be eip_* in this case. How to do that?? config attached. ~Randy