Skip to content

Commit 2610b54

Browse files
committed
removed test logs
1 parent 7204508 commit 2610b54

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

connectivity/lwipstack/source/LWIPInterfaceEMAC.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
#if LWIP_ETHERNET
2929

30-
extern "C" void log_add(const char *fmt, ...);
3130

3231
err_t LWIP::Interface::emac_low_level_output(struct netif *netif, struct pbuf *p)
3332
{
@@ -42,7 +41,6 @@ err_t LWIP::Interface::emac_low_level_output(struct netif *netif, struct pbuf *p
4241
ret = mbed_if->emac->link_out(p);
4342
}
4443
else {
45-
log_add("!!!! emac is NOT OK ---> RESTART!!!");
4644
mbed_if->emac->restart();
4745
ret = mbed_if->emac->link_out(p);
4846
}

connectivity/netsocket/include/netsocket/EMAC.h

+10-3
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,16 @@ class EMAC {
177177
*/
178178
virtual void set_memory_manager(EMACMemoryManager &mem_mngr) = 0;
179179

180-
virtual bool is_ready_to_tx() { return false;}
181-
virtual void restart() {}
182-
virtual int get_interface_status() { return -1; }
180+
virtual bool is_ready_to_tx() {
181+
return false;
182+
}
183+
184+
virtual void restart() {
185+
}
186+
187+
virtual int get_interface_status() {
188+
return -1;
189+
}
183190
};
184191

185192

0 commit comments

Comments
 (0)