diff options
author | AJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-12-10 00:24:29 +0000 |
---|---|---|
committer | AJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-12-10 00:24:29 +0000 |
commit | f147a39e3ccdac6b2556eb85613fbac136f99aee (patch) | |
tree | 6ae94f31173b6d6d63223635ab8def660848cf76 /MdeModulePkg/Bus/Pci/EhciDxe | |
parent | 6191043539345a1a98d0831ad98feb68dbab6d23 (diff) | |
download | edk2-f147a39e3ccdac6b2556eb85613fbac136f99aee.zip edk2-f147a39e3ccdac6b2556eb85613fbac136f99aee.tar.gz edk2-f147a39e3ccdac6b2556eb85613fbac136f99aee.tar.bz2 |
Tempoprary removal of this ASSERT as it crashes the BeagleBoard. We can put it back in when we figure out the issue.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9547 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Bus/Pci/EhciDxe')
-rw-r--r-- | MdeModulePkg/Bus/Pci/EhciDxe/EhciReg.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MdeModulePkg/Bus/Pci/EhciDxe/EhciReg.c b/MdeModulePkg/Bus/Pci/EhciDxe/EhciReg.c index 9a5c76f..7a533d7 100644 --- a/MdeModulePkg/Bus/Pci/EhciDxe/EhciReg.c +++ b/MdeModulePkg/Bus/Pci/EhciDxe/EhciReg.c @@ -555,7 +555,10 @@ EhcInitHC ( {
EFI_STATUS Status;
- ASSERT (EhcIsHalt (Ehc));
+ // This ASSERT crashes the BeagleBoard. There is some issue in the USB stack.
+ // This ASSERT needs to be removed so the BeagleBoard will boot. When we fix
+ // the USB stack we can put this ASSERT back in
+ // ASSERT (EhcIsHalt (Ehc));
//
// Allocate the periodic frame and associated memeory
|