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
755113d9
Commit
755113d9
authored
6 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
pkg/softdevice: use netdev_set_notsup()
parent
a07e7141
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pkg/nordic_softdevice_ble/src/gnrc_nordic_ble_6lowpan.c
+1
-11
1 addition, 11 deletions
pkg/nordic_softdevice_ble/src/gnrc_nordic_ble_6lowpan.c
with
1 addition
and
11 deletions
pkg/nordic_softdevice_ble/src/gnrc_nordic_ble_6lowpan.c
+
1
−
11
View file @
755113d9
...
@@ -230,16 +230,6 @@ static int _netdev_get(netdev_t *netdev, netopt_t opt,
...
@@ -230,16 +230,6 @@ static int _netdev_get(netdev_t *netdev, netopt_t opt,
return
res
;
return
res
;
}
}
static
int
_netdev_set
(
netdev_t
*
netdev
,
netopt_t
opt
,
const
void
*
value
,
size_t
value_len
)
{
(
void
)
netdev
;
(
void
)
opt
;
(
void
)
value
;
(
void
)
value_len
;
return
-
ENOTSUP
;
}
static
int
_netif_send
(
gnrc_netif_t
*
netif
,
gnrc_pktsnip_t
*
pkt
)
static
int
_netif_send
(
gnrc_netif_t
*
netif
,
gnrc_pktsnip_t
*
pkt
)
{
{
(
void
)
netif
;
(
void
)
netif
;
...
@@ -282,7 +272,7 @@ static const netdev_driver_t _ble_netdev_driver = {
...
@@ -282,7 +272,7 @@ static const netdev_driver_t _ble_netdev_driver = {
.
init
=
_netdev_init
,
.
init
=
_netdev_init
,
.
isr
=
NULL
,
.
isr
=
NULL
,
.
get
=
_netdev_get
,
.
get
=
_netdev_get
,
.
set
=
_
netdev_set
,
.
set
=
netdev_set
_notsup
,
};
};
static
netdev_t
_ble_dummy_dev
=
{
static
netdev_t
_ble_dummy_dev
=
{
...
...
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