aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/mouse/cyapa_gen3.c
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2015-04-14 17:46:43 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-05-21 15:59:23 -0700
commitb53d750884b26561a3e37f1a49775540120930e5 (patch)
tree13e85bac69bd17c6e222b623f6fada5088afdc59 /drivers/input/mouse/cyapa_gen3.c
parentInput: atmel_mxt_ts - use BIT() macro when reporting button state (diff)
downloadlinux-dev-b53d750884b26561a3e37f1a49775540120930e5.tar.xz
linux-dev-b53d750884b26561a3e37f1a49775540120930e5.zip
Input: cyapa - do not set otherwise unused variable
As the name suggests, always_unused argument in cyapa_gen3_set_power_mode() is never used, so there is no reason for setting it to 0. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/mouse/cyapa_gen3.c')
-rw-r--r--drivers/input/mouse/cyapa_gen3.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/input/mouse/cyapa_gen3.c b/drivers/input/mouse/cyapa_gen3.c
index 1e2291c378fe..3faf01c1b191 100644
--- a/drivers/input/mouse/cyapa_gen3.c
+++ b/drivers/input/mouse/cyapa_gen3.c
@@ -950,14 +950,13 @@ static u16 cyapa_get_wait_time_for_pwr_cmd(u8 pwr_mode)
* Device power mode can only be set when device is in operational mode.
*/
static int cyapa_gen3_set_power_mode(struct cyapa *cyapa, u8 power_mode,
- u16 always_unused)
+ u16 always_unused)
{
int ret;
u8 power;
int tries;
u16 sleep_time;
- always_unused = 0;
if (cyapa->state != CYAPA_STATE_OP)
return 0;