From 0035bf03bd8960eb8d9ff79e9f2eb7ad7c122178 Mon Sep 17 00:00:00 2001 From: "Martine S. Lenders" Date: Thu, 25 Jun 2020 10:58:56 +0200 Subject: [PATCH] pkg/nordic_softdevice_ble: remove NETOPT_IPV6_IID support This option is handled in the `gnrc_netif`-layer without any access to the driver's option since 7ae90564d91284dd5be63e89e4be1b4c6e8cfdef. --- pkg/nordic_softdevice_ble/src/gnrc_nordic_ble_6lowpan.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/nordic_softdevice_ble/src/gnrc_nordic_ble_6lowpan.c b/pkg/nordic_softdevice_ble/src/gnrc_nordic_ble_6lowpan.c index 40cf5ffa92..9c1a44fdc7 100644 --- a/pkg/nordic_softdevice_ble/src/gnrc_nordic_ble_6lowpan.c +++ b/pkg/nordic_softdevice_ble/src/gnrc_nordic_ble_6lowpan.c @@ -221,10 +221,6 @@ static int _netdev_get(netdev_t *netdev, netopt_t opt, *((uint16_t *)value) = NETDEV_TYPE_BLE; res = sizeof(uint16_t); break; - case NETOPT_IPV6_IID: - eui48_to_ipv6_iid((eui64_t *)value, (eui48_t *)_ble_netif->l2addr); - res = sizeof(uint64_t); - break; default: break; }