Skip to content
This repository has been archived by the owner on Oct 28, 2019. It is now read-only.

Add support for TFTP boot using ASIX based AX8872 USB dongle #64

Open
wants to merge 7 commits into
base: hikey
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion EmbeddedPkg/Drivers/DwUsbDxe/DwUsbDxe.c
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,8 @@ DwUsbStart (
ASSERT (RxCallback != NULL);
ASSERT (TxCallback != NULL);

phy_init();

usb_init();

mDeviceDescriptor = DeviceDescriptor;
Expand Down Expand Up @@ -744,7 +746,6 @@ DwUsbEntryPoint (
{
EFI_HANDLE Handle;

phy_init();
Handle = NULL;
return gBS->InstallProtocolInterface (
&Handle,
Expand Down
Loading