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>
#include "comedi_fc.h"
#include "8253.h"
-#define PCL711_SIZE 16
-
#define PCL711_CTR0 0
#define PCL711_CTR1 1
#define PCL711_CTR2 2
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;