diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-rx51-peripherals.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-rx51-peripherals.c | 30 | 
1 files changed, 25 insertions, 5 deletions
diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index cf07e289b4e..3a077df6b8d 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c @@ -40,9 +40,9 @@  #include <sound/tpa6130a2-plat.h>  #include <media/radio-si4713.h>  #include <media/si4713.h> -#include <linux/leds-lp5523.h> +#include <linux/platform_data/leds-lp55xx.h> -#include <../drivers/staging/iio/light/tsl2563.h> +#include <linux/platform_data/tsl2563.h>  #include <linux/lis3lv02d.h>  #if defined(CONFIG_IR_RX51) || defined(CONFIG_IR_RX51_MODULE) @@ -160,32 +160,41 @@ static struct tsl2563_platform_data rx51_tsl2563_platform_data = {  #endif  #if defined(CONFIG_LEDS_LP5523) || defined(CONFIG_LEDS_LP5523_MODULE) -static struct lp5523_led_config rx51_lp5523_led_config[] = { +static struct lp55xx_led_config rx51_lp5523_led_config[] = {  	{ +		.name		= "lp5523:kb1",  		.chan_nr	= 0,  		.led_current	= 50,  	}, { +		.name		= "lp5523:kb2",  		.chan_nr	= 1,  		.led_current	= 50,  	}, { +		.name		= "lp5523:kb3",  		.chan_nr	= 2,  		.led_current	= 50,  	}, { +		.name		= "lp5523:kb4",  		.chan_nr	= 3,  		.led_current	= 50,  	}, { +		.name		= "lp5523:b",  		.chan_nr	= 4,  		.led_current	= 50,  	}, { +		.name		= "lp5523:g",  		.chan_nr	= 5,  		.led_current	= 50,  	}, { +		.name		= "lp5523:r",  		.chan_nr	= 6,  		.led_current	= 50,  	}, { +		.name		= "lp5523:kb5",  		.chan_nr	= 7,  		.led_current	= 50,  	}, { +		.name		= "lp5523:kb6",  		.chan_nr	= 8,  		.led_current	= 50,  	} @@ -207,10 +216,10 @@ static void rx51_lp5523_enable(bool state)  	gpio_set_value(RX51_LP5523_CHIP_EN_GPIO, !!state);  } -static struct lp5523_platform_data rx51_lp5523_platform_data = { +static struct lp55xx_platform_data rx51_lp5523_platform_data = {  	.led_config		= rx51_lp5523_led_config,  	.num_channels		= ARRAY_SIZE(rx51_lp5523_led_config), -	.clock_mode		= LP5523_CLOCK_AUTO, +	.clock_mode		= LP55XX_CLOCK_AUTO,  	.setup_resources	= rx51_lp5523_setup,  	.release_resources	= rx51_lp5523_release,  	.enable			= rx51_lp5523_enable, @@ -1253,6 +1262,16 @@ static void __init rx51_init_lirc(void)  }  #endif +static struct platform_device madc_hwmon = { +	.name	= "twl4030_madc_hwmon", +	.id	= -1, +}; + +static void __init rx51_init_twl4030_hwmon(void) +{ +	platform_device_register(&madc_hwmon); +} +  void __init rx51_peripherals_init(void)  {  	rx51_i2c_init(); @@ -1272,5 +1291,6 @@ void __init rx51_peripherals_init(void)  		omap_hsmmc_init(mmc);  	rx51_charger_init(); +	rx51_init_twl4030_hwmon();  }  |