2 * MTX-1 platform devices registration
4 * Copyright (C) 2007, Florian Fainelli <florian@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <linux/autoconf.h>
22 #include <linux/init.h>
23 #include <linux/types.h>
24 #include <linux/platform_device.h>
25 #include <linux/leds.h>
29 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
30 static struct gpio_led default_leds
[] = {
31 { .name
= "mtx1:green", .gpio
= 211, .active_low
= 1, },
32 { .name
= "mtx1:red", gpio
= 212, .active_low
= 1, },
35 static struct gpio_led_platform_data mtx1_led_data
;
37 static struct platform_device mtx1_gpio_leds
= {
41 .platform_data
= &mtx1_led_data
,
46 static int __init
mtx1_register_devices(void)
49 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
50 mtx1_led_data
.num_leds
= ARRAY_SIZE(default_leds
);
51 mtx1_led_data
.leds
= default_leds
;
52 res
= platform_device_register(&mtx1_gpio_leds
);
57 arch_initall(mtx1_register_devices
);