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 <hswee...@visionengravers.com>
Cc: Ian Abbott <abbo...@mev.co.uk>
Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
---
 drivers/staging/comedi/drivers/pcl711.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/comedi/drivers/pcl711.c 
b/drivers/staging/comedi/drivers/pcl711.c
index 8aa7b0e1..8f068eb 100644
--- a/drivers/staging/comedi/drivers/pcl711.c
+++ b/drivers/staging/comedi/drivers/pcl711.c
@@ -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);
 
-- 
1.8.3.2

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to