Commit 1cc8f885 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: vmk80xx: remove private data 'count'

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: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 78f8fa7f
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment