M7350/kernel/include/linux/platform_data/lv5207lp.h

20 lines
419 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
2024-09-09 08:57:42 +00:00
* lv5207lp.h - Sanyo LV5207LP LEDs Driver
2024-09-09 08:52:07 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
2024-09-09 08:57:42 +00:00
#ifndef __LV5207LP_H__
#define __LV5207LP_H__
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
struct device;
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
struct lv5207lp_platform_data {
struct device *fbdev;
unsigned int max_value;
unsigned int def_value;
2024-09-09 08:52:07 +00:00
};
#endif