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:
Jukka Rissanen 2020-03-08 15:58:19 +02:00
parent aee31bb7c1
commit 330eb0f6f9
1 changed files with 0 additions and 1 deletions

View File

@ -251,7 +251,6 @@ static void rx_thread(void *arg1, void *unused1, void *unused2)
net_eth_carrier_on(dev_data->iface);
}
while ((pkt = eth_rx(dev)) != NULL) {
net_pkt_print_frags(pkt);
res = net_recv_data(dev_data->iface, pkt);
if (res < 0) {
eth_stats_update_errors_rx(dev_data->iface);