]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: most: hdm-dim2: remove tracing of mac address
authorAndrey Shvetsov <andrey.shvetsov@k2l.de>
Tue, 4 Oct 2016 15:10:20 +0000 (17:10 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Oct 2016 08:25:13 +0000 (10:25 +0200)
This patch removes tracing of the MAC address from the DIM2 HDM as it is
already done in the networking AIM.

Signed-off-by: Andrey Shvetsov <andrey.shvetsov@k2l.de>
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/hdm-dim2/dim2_hdm.c

index 78b2c3dd9bb3f9fb5e126416ad520eefcaf34554..35aee9fbbf02e0a1693dd7ffccdb32ff484206ce 100644 (file)
@@ -306,14 +306,11 @@ static int deliver_netinfo_thread(void *data)
 static void retrieve_netinfo(struct dim2_hdm *dev, struct mbo *mbo)
 {
        u8 *data = mbo->virt_address;
-       u8 *mac = dev->mac_addrs;
 
        pr_info("Node Address: 0x%03x\n", (u16)data[16] << 8 | data[17]);
        dev->link_state = data[18];
        pr_info("NIState: %d\n", dev->link_state);
-       memcpy(mac, data + 19, 6);
-       pr_info("MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n",
-               mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
+       memcpy(dev->mac_addrs, data + 19, 6);
        dev->deliver_netinfo++;
        wake_up_interruptible(&dev->netinfo_waitq);
 }