diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2023-04-12 13:56:36 +0200 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2023-04-13 14:27:53 +0200 |
commit | 0af4d704ba8e5ee632b6e65015ffe4d229c1a9a9 (patch) | |
tree | 41171a79d9ad02b58067acdd5887d26f780358e9 /include | |
parent | pwm: meson: Fix g12a ao clk81 name (diff) | |
download | linux-0af4d704ba8e5ee632b6e65015ffe4d229c1a9a9.tar.xz linux-0af4d704ba8e5ee632b6e65015ffe4d229c1a9a9.zip |
pwm: Delete deprecated functions pwm_request() and pwm_free()
Since commit 5a7fbe452ad9 ("backlight: pwm_bl: Drop support for legacy PWM
probing") the last user of pwm_request() and pwm_free() is gone. So remove
these functions that were deprecated over 10 years ago in commit
8138d2ddbcca ("pwm: Add table-based lookup for static mappings").
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
[thierry.reding@gmail.com: clean up a bit after removal]
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pwm.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/linux/pwm.h b/include/linux/pwm.h index 7b7b93b6fb81..04ae1d9073a7 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h @@ -309,8 +309,6 @@ struct pwm_chip { #if IS_ENABLED(CONFIG_PWM) /* PWM user APIs */ -struct pwm_device *pwm_request(int pwm_id, const char *label); -void pwm_free(struct pwm_device *pwm); int pwm_apply_state(struct pwm_device *pwm, const struct pwm_state *state); int pwm_adjust_config(struct pwm_device *pwm); @@ -410,17 +408,6 @@ struct pwm_device *devm_fwnode_pwm_get(struct device *dev, struct fwnode_handle *fwnode, const char *con_id); #else -static inline struct pwm_device *pwm_request(int pwm_id, const char *label) -{ - might_sleep(); - return ERR_PTR(-ENODEV); -} - -static inline void pwm_free(struct pwm_device *pwm) -{ - might_sleep(); -} - static inline int pwm_apply_state(struct pwm_device *pwm, const struct pwm_state *state) { |