staging: unisys: remove devdata->name use netdev->name
authorDavid Kershner <david.kershner@unisys.com>
Thu, 1 Oct 2015 15:52:27 +0000 (11:52 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 Oct 2015 09:37:53 +0000 (11:37 +0200)
The net device already has a name, so use that instead.

Signed-off-by: David Kershner <david.kershner@unisys.com>
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visornic/visornic_main.c

index 9d3c1e28206240705b74d3913f653be01c4ef6f1..be142ebc982158a5f28eb567d0cf6c204337878d 100644 (file)
@@ -119,7 +119,6 @@ struct visornic_devdata {
                                         * IOPART
                                         */
        struct visor_device *dev;
-       char name[99];
        struct list_head list_all;   /* < link within list_all_devices list */
        struct net_device *netdev;
        struct net_device_stats net_stats;
@@ -1388,7 +1387,6 @@ devdata_initialize(struct visornic_devdata *devdata, struct visor_device *dev)
                return NULL;
        devdata->devnum = devnum;
        devdata->dev = dev;
-       strncpy(devdata->name, dev_name(&dev->device), sizeof(devdata->name));
        spin_lock(&lock_all_devices);
        list_add_tail(&devdata->list_all, &list_all_devices);
        spin_unlock(&lock_all_devices);
@@ -1964,7 +1962,6 @@ static void host_side_disappeared(struct visornic_devdata *devdata)
        unsigned long flags;
 
        spin_lock_irqsave(&devdata->priv_lock, flags);
-       sprintf(devdata->name, "<dev#%d-history>", devdata->devnum);
        devdata->dev = NULL;   /* indicate device destroyed */
        spin_unlock_irqrestore(&devdata->priv_lock, flags);
 }
This page took 0.025274 seconds and 5 git commands to generate.