drivers: ethernet: stm32: Remove frag debug print in RX
The RX fragment debug print does not work (compile error) if memory allocation debugging is enabled, so disable it for time being. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
aee31bb7c1
commit
330eb0f6f9
1 changed files with 0 additions and 1 deletions
|
@ -251,7 +251,6 @@ static void rx_thread(void *arg1, void *unused1, void *unused2)
|
||||||
net_eth_carrier_on(dev_data->iface);
|
net_eth_carrier_on(dev_data->iface);
|
||||||
}
|
}
|
||||||
while ((pkt = eth_rx(dev)) != NULL) {
|
while ((pkt = eth_rx(dev)) != NULL) {
|
||||||
net_pkt_print_frags(pkt);
|
|
||||||
res = net_recv_data(dev_data->iface, pkt);
|
res = net_recv_data(dev_data->iface, pkt);
|
||||||
if (res < 0) {
|
if (res < 0) {
|
||||||
eth_stats_update_errors_rx(dev_data->iface);
|
eth_stats_update_errors_rx(dev_data->iface);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue