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.
This commit is contained in:
Martine S. Lenders 2020-06-25 10:58:56 +02:00
parent 14afbe1030
commit 0035bf03bd
No known key found for this signature in database
GPG Key ID: CCD317364F63286F

View File

@ -221,10 +221,6 @@ static int _netdev_get(netdev_t *netdev, netopt_t opt,
*((uint16_t *)value) = NETDEV_TYPE_BLE; *((uint16_t *)value) = NETDEV_TYPE_BLE;
res = sizeof(uint16_t); res = sizeof(uint16_t);
break; break;
case NETOPT_IPV6_IID:
eui48_to_ipv6_iid((eui64_t *)value, (eui48_t *)_ble_netif->l2addr);
res = sizeof(uint64_t);
break;
default: default:
break; break;
} }