RX-51: Register twl4030-madc device

Register twl4030-madc device

Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Pali Rohár 2013-01-20 03:54:26 +01:00 committed by Tony Lindgren
parent 1e7bf5e362
commit 749a34b37d

View file

@ -1262,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();
@ -1281,5 +1291,6 @@ void __init rx51_peripherals_init(void)
omap_hsmmc_init(mmc);
rx51_charger_init();
rx51_init_twl4030_hwmon();
}