diff mbox series

[1/2] pwm: pwx: Drop if with an always false condition

Message ID 20210425182300.2807668-1-u.kleine-koenig@pengutronix.de
State Superseded
Headers show
Series [1/2] pwm: pwx: Drop if with an always false condition | expand

Commit Message

Uwe Kleine-König April 25, 2021, 6:22 p.m. UTC
The .remove() function is only called after .probe() returned
successfully. In this case platform_set_drvdata() was called with a
non-NULL argument and so platfrom_get_drvdata() returns the same
non-NULL value.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 drivers/pwm/pwm-pxa.c | 2 --
 1 file changed, 2 deletions(-)


base-commit: 30d0031bd7cab931589e023149afc77739a4b175
diff mbox series

Patch

diff --git a/drivers/pwm/pwm-pxa.c b/drivers/pwm/pwm-pxa.c
index cfb683827d32..31752640dcf7 100644
--- a/drivers/pwm/pwm-pxa.c
+++ b/drivers/pwm/pwm-pxa.c
@@ -210,8 +210,6 @@  static int pwm_remove(struct platform_device *pdev)
 	struct pxa_pwm_chip *chip;
 
 	chip = platform_get_drvdata(pdev);
-	if (chip == NULL)
-		return -ENODEV;
 
 	return pwmchip_remove(&chip->chip);
 }