net: Remove unnecessary k_wakeup

net_buf_put already awakes the RX thread so k_wakeup is not necessary.

Change-Id: I18b5aef5d6e85a9461bc01c17f56c3d4d9a13824
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
Luiz Augusto von Dentz 2016-12-12 13:38:49 +02:00 committed by Tomasz Bursztyka
parent e27e1e73e1
commit 73e76c2ce2

View file

@ -817,8 +817,6 @@ int net_recv_data(struct net_if *iface, struct net_buf *buf)
net_buf_put(&rx_queue, buf);
k_wakeup(rx_tid);
return 0;
}