summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSekhar Nori <nsekhar@ti.com>2009-07-14 11:44:32 +0530
committerJustin Waters <justin.waters@timesys.com>2009-09-09 14:03:28 -0400
commiteea473d268548ffb8524bd41d0acce2acc2b2ec7 (patch)
tree3dae7cbf49935d9b0752eb035cde70870dd6d422 /drivers
parentabb838f96548117d418bca72f566fe1763b4da6c (diff)
u-boot: da850/omap-l138: include provision to wake up DSP.
DSP is woken-up by default on DA850/OMAP-L138. To prevent DSP from being woken up, set the environment variable dspwake to no.
Diffstat (limited to 'drivers')
-rwxr-xr-xdrivers/usb/da8xx_usb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/da8xx_usb.c b/drivers/usb/da8xx_usb.c
index 6e46d436b0b..8b45dfd21b2 100755
--- a/drivers/usb/da8xx_usb.c
+++ b/drivers/usb/da8xx_usb.c
@@ -24,7 +24,7 @@
#include "da8xx_usb.h"
/* extern functions */
-extern void lpsc_on(unsigned int id);
+extern void lpsc_on(unsigned domain, unsigned int id);
/* Timeout for DA8xx usb module */
#define DA8XX_USB_TIMEOUT 0x3FFFF
@@ -173,7 +173,7 @@ int musb_platform_init(void)
u32 revision;
/* enable psc for usb2.0 */
- lpsc_on(33);
+ lpsc_on(0, 33);
/* enable usb vbus */
enable_vbus();