Skip to content
Snippets Groups Projects
Commit 60122cca authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

cpu: native: netdev2_tap: don't pass isr_arg on rx complete event

parent 2e61f4d3
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ static inline int _set_promiscous(netdev2_t *netdev, int value)
static inline void _isr(netdev2_t *netdev)
{
if (netdev->event_callback) {
netdev->event_callback(netdev, NETDEV2_EVENT_RX_COMPLETE, netdev->isr_arg);
netdev->event_callback(netdev, NETDEV2_EVENT_RX_COMPLETE, NULL);
}
#if DEVELHELP
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment