staging: comedi: vmk80xx: remove private data 'count'
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 6 Feb 2013 00:22:03 +0000 (17:22 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 6 Feb 2013 02:07:10 +0000 (18:07 -0800)
The 'count' in the private data is only used in a couple dev_info()
kernel messages. These messages are just added noise.

Remove the 'count' variable in the private data as well as the
dev_info() messages.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/vmk80xx.c

index f52d34d..ec9ff0d 100644 (file)
@@ -212,7 +212,6 @@ struct vmk80xx_private {
        unsigned long flags;
        int probed;
        int attached;
-       int count;
 };
 
 static struct vmk80xx_private vmb[VMK80XX_MAX_BOARDS];
@@ -1285,8 +1284,6 @@ static int vmk80xx_attach_common(struct comedi_device *dev,
        }
 
        devpriv->attached = 1;
-       dev_info(dev->class_dev, "vmk80xx: board #%d [%s] attached\n",
-                devpriv->count, boardinfo->name);
 
        up(&devpriv->limit_sem);
 
@@ -1369,7 +1366,6 @@ static int vmk80xx_usb_probe(struct usb_interface *intf,
        devpriv = &vmb[i];
 
        memset(devpriv, 0x00, sizeof(*devpriv));
-       devpriv->count = i;
 
        ret = vmk80xx_find_usb_endpoints(devpriv, intf);
        if (ret) {
@@ -1415,9 +1411,6 @@ static int vmk80xx_usb_probe(struct usb_interface *intf,
 
        devpriv->probed = 1;
 
-       dev_info(&intf->dev, "board #%d [%s] now attached\n",
-                devpriv->count, boardinfo->name);
-
        mutex_unlock(&glb_mutex);
 
        comedi_usb_auto_config(intf, &vmk80xx_driver);