aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-04-02 12:08:57 +0100
committerThierry Reding <thierry.reding@gmail.com>2020-04-03 21:40:56 +0200
commit437fb760d046340d0dee3b4307e1cf4578fd8ca8 (patch)
tree517c7e599393e10e032e525c95070c00719809f2 /drivers/pwm
parentpwm: jz4740: Allow selection of PWM channels 0 and 1 (diff)
downloadlinux-dev-437fb760d046340d0dee3b4307e1cf4578fd8ca8.tar.xz
linux-dev-437fb760d046340d0dee3b4307e1cf4578fd8ca8.zip
pwm: meson: Remove redundant assignment to variable fin_freq
The variable fin_freq is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm')
-rw-r--r--drivers/pwm/pwm-meson.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-meson.c b/drivers/pwm/pwm-meson.c
index 8cf9129caa39..bd0d7336b898 100644
--- a/drivers/pwm/pwm-meson.c
+++ b/drivers/pwm/pwm-meson.c
@@ -163,7 +163,7 @@ static int meson_pwm_calc(struct meson_pwm *meson, struct pwm_device *pwm,
{
struct meson_pwm_channel *channel = pwm_get_chip_data(pwm);
unsigned int duty, period, pre_div, cnt, duty_cnt;
- unsigned long fin_freq = -1;
+ unsigned long fin_freq;
duty = state->duty_cycle;
period = state->period;