blob: 6a9fed57f34620c20a931f317150e5a381058e8f [file] [log] [blame]
Simon Guinot11efe712010-07-06 16:08:46 +02001/*
Simon Guinot11efe712010-07-06 16:08:46 +02002 * Platform data structure for Network Space v2 LED driver
3 *
4 * This file is licensed under the terms of the GNU General Public
5 * License version 2. This program is licensed "as is" without any
6 * warranty of any kind, whether express or implied.
7 */
8
Sachin Kamat00d19552014-01-02 01:58:45 -08009#ifndef __LEDS_KIRKWOOD_NS2_H
10#define __LEDS_KIRKWOOD_NS2_H
Simon Guinot11efe712010-07-06 16:08:46 +020011
12struct ns2_led {
13 const char *name;
14 const char *default_trigger;
15 unsigned cmd;
16 unsigned slow;
17};
18
19struct ns2_led_platform_data {
20 int num_leds;
21 struct ns2_led *leds;
22};
23
Sachin Kamat00d19552014-01-02 01:58:45 -080024#endif /* __LEDS_KIRKWOOD_NS2_H */