diff options
author | Denis Osterland-Heim <denis.osterland@diehl.com> | 2020-03-21 08:15:53 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2020-03-21 16:17:53 +0100 |
commit | 141f15c66d9472c642f38aae010ed68289036d7c (patch) | |
tree | a083cbcb4baa564484afe288bb3db91a1a59922f /include/linux/leds_pwm.h | |
parent | dd47a83453e4a5b0d6a91fe702b7fbc1984fb610 (diff) | |
download | lwn-141f15c66d9472c642f38aae010ed68289036d7c.tar.gz lwn-141f15c66d9472c642f38aae010ed68289036d7c.zip |
leds: pwm: remove header
The header is only used by leds_pwm.c, so move contents to leds_pwm.c
and remove it.
Apply minor changes suggested by checkpatch.
Remove deprecated and unused pwm_id member.
Suggested-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Denis Osterland-Heim <Denis.Osterland@diehl.com>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
Diffstat (limited to 'include/linux/leds_pwm.h')
-rw-r--r-- | include/linux/leds_pwm.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/include/linux/leds_pwm.h b/include/linux/leds_pwm.h deleted file mode 100644 index 93d101d28943..000000000000 --- a/include/linux/leds_pwm.h +++ /dev/null @@ -1,22 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -/* - * PWM LED driver data - see drivers/leds/leds-pwm.c - */ -#ifndef __LINUX_LEDS_PWM_H -#define __LINUX_LEDS_PWM_H - -struct led_pwm { - const char *name; - const char *default_trigger; - unsigned pwm_id __deprecated; - u8 active_low; - unsigned max_brightness; - unsigned pwm_period_ns; -}; - -struct led_pwm_platform_data { - int num_leds; - struct led_pwm *leds; -}; - -#endif |