Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
15d9ce49
Commit
15d9ce49
authored
8 years ago
by
Kaspar Schleiser
Browse files
Options
Downloads
Patches
Plain Diff
pkg: lwip: adapt to changed netdev2->event_callback signature
parent
575ee236
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pkg/lwip/contrib/netdev2/lwip_netdev2.c
+2
-3
2 additions, 3 deletions
pkg/lwip/contrib/netdev2/lwip_netdev2.c
with
2 additions
and
3 deletions
pkg/lwip/contrib/netdev2/lwip_netdev2.c
+
2
−
3
View file @
15d9ce49
...
...
@@ -57,7 +57,7 @@ static err_t _eth_link_output(struct netif *netif, struct pbuf *p);
#ifdef MODULE_LWIP_SIXLOWPAN
static
err_t
_ieee802154_link_output
(
struct
netif
*
netif
,
struct
pbuf
*
p
);
#endif
static
void
_event_cb
(
netdev2_t
*
dev
,
netdev2_event_t
event
,
void
*
arg
);
static
void
_event_cb
(
netdev2_t
*
dev
,
netdev2_event_t
event
);
static
void
*
_event_loop
(
void
*
arg
);
err_t
lwip_netdev2_init
(
struct
netif
*
netif
)
...
...
@@ -209,9 +209,8 @@ static struct pbuf *_get_recv_pkt(netdev2_t *dev)
return
p
;
}
static
void
_event_cb
(
netdev2_t
*
dev
,
netdev2_event_t
event
,
void
*
arg
)
static
void
_event_cb
(
netdev2_t
*
dev
,
netdev2_event_t
event
)
{
(
void
)
arg
;
if
(
event
==
NETDEV2_EVENT_ISR
)
{
assert
(
_pid
!=
KERNEL_PID_UNDEF
);
msg_t
msg
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment