diff options
| author | Wolfgang Denk <wd@denx.de> | 2009-07-30 00:36:25 +0200 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-07-30 00:36:25 +0200 |
| commit | 108f56b056780f0d23f720d98709304f84a0d6c8 (patch) | |
| tree | 2a2eb0ab998cfdbf6275dcf282ab282056a14f30 /board/omap3/beagle/beagle.c | |
| parent | 4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d (diff) | |
| parent | bb4291e62579dbc611e84eaaf973631e0bf129c7 (diff) | |
| download | olio-uboot-2014.01-108f56b056780f0d23f720d98709304f84a0d6c8.tar.xz olio-uboot-2014.01-108f56b056780f0d23f720d98709304f84a0d6c8.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-i2c
Diffstat (limited to 'board/omap3/beagle/beagle.c')
| -rw-r--r-- | board/omap3/beagle/beagle.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/omap3/beagle/beagle.c b/board/omap3/beagle/beagle.c index d268e1870..5423650df 100644 --- a/board/omap3/beagle/beagle.c +++ b/board/omap3/beagle/beagle.c @@ -30,6 +30,7 @@ * MA 02111-1307 USA */ #include <common.h> +#include <twl4030.h> #include <asm/io.h> #include <asm/arch/mux.h> #include <asm/arch/sys_proto.h> @@ -105,7 +106,8 @@ int misc_init_r(void) gpio_t *gpio5_base = (gpio_t *)OMAP34XX_GPIO5_BASE; gpio_t *gpio6_base = (gpio_t *)OMAP34XX_GPIO6_BASE; - power_init_r(); + twl4030_power_init(); + twl4030_led_init(); /* Configure GPIOs to output */ writel(~(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1), &gpio6_base->oe); |