staging: comedi: pcl711: remove 'i8253_osc_base'

This static const int variable is only used one place in the code.
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:43:47 -07:00 committed by Greg Kroah-Hartman
parent 7bd0573bec
commit 326d875da3

View file

@ -134,8 +134,6 @@ static const struct comedi_lrange range_acl8112dg_ai = {
}
};
static const int i8253_osc_base = 500; /* 2 Mhz */
struct pcl711_board {
const char *name;
int n_aichan;
@ -378,7 +376,8 @@ static int pcl711_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
if (cmd->scan_begin_src == TRIG_TIMER) {
timer1 = timer2 = 0;
i8253_cascade_ns_to_timer(i8253_osc_base, &timer1, &timer2,
i8253_cascade_ns_to_timer(500, /* 2 Mhz */
&timer1, &timer2,
&cmd->scan_begin_arg,
TRIG_ROUND_NEAREST);