From b2a261f0c3df2500a97e44c7ea10c17022d5ee1f Mon Sep 17 00:00:00 2001
From: Martine Lenders <mail@martine-lenders.eu>
Date: Wed, 12 Dec 2018 10:44:32 +0100
Subject: [PATCH] tests: remove NETOPT_IPV6_IID get() from driver_at86rf2xx
 test

---
 tests/driver_at86rf2xx/cmd.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/tests/driver_at86rf2xx/cmd.c b/tests/driver_at86rf2xx/cmd.c
index 6105cfe95c..d6730e7c72 100644
--- a/tests/driver_at86rf2xx/cmd.c
+++ b/tests/driver_at86rf2xx/cmd.c
@@ -35,7 +35,6 @@ static int send(int iface, le_uint16_t dst_pan, uint8_t *dst_addr,
 int ifconfig_list(int idx)
 {
     int res;
-    uint8_t array_val[_MAX_ADDR_LEN];
     netdev_ieee802154_t *dev = (netdev_ieee802154_t *)(&devs[idx]);
 
     int (*get)(netdev_t *, netopt_t, void *, size_t) = dev->netdev.driver->get;
@@ -69,13 +68,6 @@ int ifconfig_list(int idx)
         return 1;
     }
     printf(", Max.Payload: %u", (unsigned)u16_val);
-
-    res = get((netdev_t *)dev, NETOPT_IPV6_IID, array_val, sizeof(array_val));
-    if (res > 0) {
-        printf("\n           IPv6 IID: ");
-        print_addr(array_val, res);
-    }
-
     printf("\n           Channel: %u", dev->chan);
 
     res = get((netdev_t *)dev, NETOPT_CHANNEL_PAGE, &u16_val, sizeof(u16_val));
-- 
GitLab