pwm: vt8500: Drop if with an always false condition
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 21 Jun 2021 13:04:57 +0000 (15:04 +0200)
committerThierry Reding <thierry.reding@gmail.com>
Wed, 30 Jun 2021 17:12:20 +0000 (19:12 +0200)
commitfb2cb3bff9e0ede1709620809374dd14c07b1e16
treeb869ea14f71146ff847b53ba89e1a31e05fdeca0
parent2f1a3bd4510afd8cf5ab5a6169ad64981a62dccf
pwm: vt8500: Drop if with an always false condition

vt8500_pwm_remove() is only called after vt8500_pwm_probe() returned
successfully. In this case driver data was set to a non-NULL value
and so chip can never be NULL.

While touching this code also put declaration and assignment in a single
line.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
drivers/pwm/pwm-vt8500.c