diff options
author | Heikki Krogerus <ext-heikki.krogerus@nokia.com> | 2010-08-19 08:09:37 -0400 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2010-08-20 12:21:38 -0400 |
commit | fd0964c5f1bdaa979a7ea5cfc9af2de9b0a1e766 (patch) | |
tree | c5eadaf175e0c6b523df94e99f67b73dea6c0582 /arch | |
parent | ec46475f3e3163dd80bfee086fa71b36455ecc0b (diff) |
omap: rx51: Add support for USB chargers
This enables isp1704 power supply driver on RX51, allowing
USB charger detection with N900.
Signed-off-by: Heikki Krogerus <ext-heikki.krogerus@nokia.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/board-rx51-peripherals.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index 9a5eb87425fc..a4b1f8bdff43 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c | |||
@@ -104,6 +104,10 @@ static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = { | |||
104 | }, | 104 | }, |
105 | }; | 105 | }; |
106 | 106 | ||
107 | static struct platform_device rx51_charger_device = { | ||
108 | .name = "isp1704_charger", | ||
109 | }; | ||
110 | |||
107 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) | 111 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
108 | 112 | ||
109 | #define RX51_GPIO_CAMERA_LENS_COVER 110 | 113 | #define RX51_GPIO_CAMERA_LENS_COVER 110 |
@@ -909,5 +913,6 @@ void __init rx51_peripherals_init(void) | |||
909 | spi_register_board_info(rx51_peripherals_spi_board_info, | 913 | spi_register_board_info(rx51_peripherals_spi_board_info, |
910 | ARRAY_SIZE(rx51_peripherals_spi_board_info)); | 914 | ARRAY_SIZE(rx51_peripherals_spi_board_info)); |
911 | omap2_hsmmc_init(mmc); | 915 | omap2_hsmmc_init(mmc); |
916 | platform_device_register(&rx51_charger_device); | ||
912 | } | 917 | } |
913 | 918 | ||