blob: 6168f6632aa01fd6c6be2f146024b9067e40e82a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* leds-regulator.h - platform data structure for MAX8997 LEDs.
*
* Copyright (C) 2011 Samsung Electronics
*
* 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.
*
*/
#ifndef __LINUX_LEDS_MAX8997_H
#define __LINUX_LEDS_MAX8997_H
struct led_max8997_platform_data {
char *name; /* LED name as expected by LED class */
unsigned int brightness; /* initial brightness value */
};
#endif /* __LINUX_LEDS_MAX8997_H */
|