diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2021-03-01 19:57:19 +0100 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2021-03-22 11:53:00 +0100 |
commit | f9a8ee8c8bcd118e800d88772c6457381db45224 (patch) | |
tree | 18be07fd64944b700602491de24a6a0eabc89826 /drivers/pwm/pwm-imx-tpm.c | |
parent | pwm: imx-tpm: Use a single line for error message (diff) | |
download | linux-f9a8ee8c8bcd118e800d88772c6457381db45224.tar.xz linux-f9a8ee8c8bcd118e800d88772c6457381db45224.zip |
pwm: Always allocate PWM chip base ID dynamically
Since commit 5e5da1e9fbee ("pwm: ab8500: Explicitly allocate pwm chip
base dynamically") all drivers use dynamic ID allocation explicitly. New
drivers are supposed to do the same, so remove support for driver
specified base IDs and drop all assignments in the low-level drivers.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm/pwm-imx-tpm.c')
-rw-r--r-- | drivers/pwm/pwm-imx-tpm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-imx-tpm.c b/drivers/pwm/pwm-imx-tpm.c index eec9ec4e1a2a..97c9133b6876 100644 --- a/drivers/pwm/pwm-imx-tpm.c +++ b/drivers/pwm/pwm-imx-tpm.c @@ -363,7 +363,6 @@ static int pwm_imx_tpm_probe(struct platform_device *pdev) tpm->chip.dev = &pdev->dev; tpm->chip.ops = &imx_tpm_pwm_ops; - tpm->chip.base = -1; tpm->chip.of_xlate = of_pwm_xlate_with_flags; tpm->chip.of_pwm_n_cells = 3; |