staging: comedi: Remove unused variable ‘min_full_scale’ and function 'get_min_full_s...
authorBixuan Cui <cuibixuan@huawei.com>
Fri, 14 May 2021 08:52:14 +0000 (16:52 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 May 2021 16:00:24 +0000 (18:00 +0200)
The variable ‘min_full_scale’ and function 'get_min_full_scales' are
not used, So delete them.

Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Bixuan Cui <cuibixuan@huawei.com>
Link: https://lore.kernel.org/r/20210514085214.53941-1-cuibixuan@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/comedi/drivers/jr3_pci.c

index 7a02c4fa3cda88541cb1220be7c8b1a623eb1450..f963080dd61fb003c67ca68e760c5e759f268104 100644 (file)
@@ -186,19 +186,6 @@ static void set_full_scales(struct jr3_sensor __iomem *sensor,
        set_s16(&sensor->command_word0, 0x0a00);
 }
 
-static struct six_axis_t get_min_full_scales(struct jr3_sensor __iomem *sensor)
-{
-       struct six_axis_t result;
-
-       result.fx = get_s16(&sensor->min_full_scale.fx);
-       result.fy = get_s16(&sensor->min_full_scale.fy);
-       result.fz = get_s16(&sensor->min_full_scale.fz);
-       result.mx = get_s16(&sensor->min_full_scale.mx);
-       result.my = get_s16(&sensor->min_full_scale.my);
-       result.mz = get_s16(&sensor->min_full_scale.mz);
-       return result;
-}
-
 static struct six_axis_t get_max_full_scales(struct jr3_sensor __iomem *sensor)
 {
        struct six_axis_t result;
@@ -504,10 +491,8 @@ jr3_pci_poll_subdevice(struct comedi_subdevice *s)
                        result = poll_delay_min_max(20, 100);
                } else {
                        /* Set full scale */
-                       struct six_axis_t min_full_scale;
                        struct six_axis_t max_full_scale;
 
-                       min_full_scale = get_min_full_scales(sensor);
                        max_full_scale = get_max_full_scales(sensor);
                        set_full_scales(sensor, max_full_scale);