mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
2b67c95b74
Use the platform_data include directory for the TPU LED driver, as suggested by Paul Mundt. Signed-off-by: Magnus Damm <damm@opensource.se> Cc: Paul Mundt <lethal@linux-sh.org> Cc: Richard Purdie <rpurdie@rpsys.net> Cc: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
14 lines
304 B
C
14 lines
304 B
C
#ifndef __LEDS_RENESAS_TPU_H__
|
|
#define __LEDS_RENESAS_TPU_H__
|
|
|
|
struct led_renesas_tpu_config {
|
|
char *name;
|
|
unsigned pin_gpio_fn;
|
|
unsigned pin_gpio;
|
|
unsigned int channel_offset;
|
|
unsigned int timer_bit;
|
|
unsigned int max_brightness;
|
|
unsigned int refresh_rate;
|
|
};
|
|
|
|
#endif /* __LEDS_RENESAS_TPU_H__ */
|