staging: comedi: pcl711: remove PCL711_SIZE

This define is only used in the comedi_request_region() call. It doesn't
really add any clarity to the code so remove it and just open code the
value.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
H Hartley Sweeten 2013-09-20 16:36:17 -07:00 committed by Greg Kroah-Hartman
parent baa7189131
commit 95bb941465

View file

@ -62,8 +62,6 @@ supported.
#include "comedi_fc.h"
#include "8253.h"
#define PCL711_SIZE 16
#define PCL711_CTR0 0
#define PCL711_CTR1 1
#define PCL711_CTR2 2
@ -479,7 +477,7 @@ static int pcl711_attach(struct comedi_device *dev, struct comedi_devconfig *it)
int ret;
struct comedi_subdevice *s;
ret = comedi_request_region(dev, it->options[0], PCL711_SIZE);
ret = comedi_request_region(dev, it->options[0], 0x10);
if (ret)
return ret;