Skip to content

Commit

Permalink
staging: comedi: vmk80xx: remove private data 'count'
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Feb 6, 2013
1 parent 78f8fa7 commit 1cc8f88
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions drivers/staging/comedi/drivers/vmk80xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ struct vmk80xx_private {
unsigned long flags;
int probed;
int attached;
int count;
};

static struct vmk80xx_private vmb[VMK80XX_MAX_BOARDS];
Expand Down Expand Up @@ -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);

Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 1cc8f88

Please sign in to comment.