2019-06-04 10:11:33 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2013-07-04 21:13:25 +02:00
|
|
|
/*
|
|
|
|
|
* lv5207lp.h - Sanyo LV5207LP LEDs Driver
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __LV5207LP_H__
|
|
|
|
|
#define __LV5207LP_H__
|
|
|
|
|
|
|
|
|
|
struct device;
|
|
|
|
|
|
|
|
|
|
struct lv5207lp_platform_data {
|
2023-06-13 13:06:41 +02:00
|
|
|
struct device *dev;
|
2013-07-04 21:13:25 +02:00
|
|
|
unsigned int max_value;
|
|
|
|
|
unsigned int def_value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|