mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 13:33:30 -04:00
staging: comedi: s626: remove a variable from set_mode_a() and _b()
The `set_mode_a()` and `set_mode_b()` functions use a local variable `setup` which is initialized to the value of parameter `Setup` which is not used further. Get rid of the local variable and rename the parameter to `setup`. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b075ac8e93
commit
cffd7ab946
@@ -1958,12 +1958,11 @@ static uint16_t get_mode_b(struct comedi_device *dev, struct enc_private *k)
|
||||
* ClkPol, ClkEnab, IndexSrc, IndexPol, LoadSrc.
|
||||
*/
|
||||
static void set_mode_a(struct comedi_device *dev, struct enc_private *k,
|
||||
uint16_t Setup, uint16_t DisableIntSrc)
|
||||
uint16_t setup, uint16_t DisableIntSrc)
|
||||
{
|
||||
struct s626_private *devpriv = dev->private;
|
||||
uint16_t cra;
|
||||
uint16_t crb;
|
||||
uint16_t setup = Setup; /* Cache the Standard Setup. */
|
||||
|
||||
/* Initialize CRA and CRB images. */
|
||||
/* Preload trigger is passed through. */
|
||||
@@ -2037,12 +2036,11 @@ static void set_mode_a(struct comedi_device *dev, struct enc_private *k,
|
||||
}
|
||||
|
||||
static void set_mode_b(struct comedi_device *dev, struct enc_private *k,
|
||||
uint16_t Setup, uint16_t DisableIntSrc)
|
||||
uint16_t setup, uint16_t DisableIntSrc)
|
||||
{
|
||||
struct s626_private *devpriv = dev->private;
|
||||
uint16_t cra;
|
||||
uint16_t crb;
|
||||
uint16_t setup = Setup; /* Cache the Standard Setup. */
|
||||
|
||||
/* Initialize CRA and CRB images. */
|
||||
/* IndexSrc field is restricted to ENC_X or IndxPol. */
|
||||
|
||||
Reference in New Issue
Block a user