[edk2-devel] [edk2-platform][PATCH v1 0/2] Update ASIX USB Networking drivers

Samer El-Haj-Mahmoud posted 2 patches 3 years, 10 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/edk2 tags/patchew/20200507033720.31152-1-Samer.El-Haj-Mahmoud@arm.com
There is a newer version of this series
.../Bus/Usb/UsbNetworking/Ax88179/Ax88179.inf |   66 +
.../Usb/UsbNetworking/Ax88772c/Ax88772c.inf   |   65 +
.../Bus/Usb/UsbNetworking/Ax88179/Ax88179.h   | 1127 ++++++++++++
.../Bus/Usb/UsbNetworking/Ax88772c/Ax88772.h  | 1097 +++++++++++
.../Bus/Usb/UsbNetworking/Ax88179/Ax88179.c   | 1026 +++++++++++
.../Usb/UsbNetworking/Ax88179/ComponentName.c |  290 +++
.../Usb/UsbNetworking/Ax88179/DriverBinding.c |  620 +++++++
.../Usb/UsbNetworking/Ax88179/SimpleNetwork.c | 1585 ++++++++++++++++
.../Bus/Usb/UsbNetworking/Ax88772c/Ax88772.c  | 1296 +++++++++++++
.../UsbNetworking/Ax88772c/ComponentName.c    |  246 +++
.../UsbNetworking/Ax88772c/DriverBinding.c    |  637 +++++++
.../UsbNetworking/Ax88772c/SimpleNetwork.c    | 1612 +++++++++++++++++
12 files changed, 9667 insertions(+)
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/Ax88179.inf
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/Ax88772c.inf
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/Ax88179.h
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/Ax88772.h
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/Ax88179.c
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/ComponentName.c
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/DriverBinding.c
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/SimpleNetwork.c
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/Ax88772.c
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/ComponentName.c
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/DriverBinding.c
create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/SimpleNetwork.c
[edk2-devel] [edk2-platform][PATCH v1 0/2] Update ASIX USB Networking drivers
Posted by Samer El-Haj-Mahmoud 3 years, 10 months ago
This series adds two new ASIX USB networking drivers, Ax88179 and Ax88772c.

Cc: Ray Ni <ray.ni@intel.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Ard Biesheuvel <ard.biesheuvel@arm.com>

Signed-off-by: Samer El-Haj-Mahmoud <samer.el-haj-mahmoud@arm.com>

Samer El-Haj-Mahmoud (2):
  OptionRomPkg: UsbNetworking: ASIX Ax88179 driver
  Drivers/OptionRomPkg: UsbNetworking: ASIX Ax88772c driver v2.8.0

 .../Bus/Usb/UsbNetworking/Ax88179/Ax88179.inf |   66 +
 .../Usb/UsbNetworking/Ax88772c/Ax88772c.inf   |   65 +
 .../Bus/Usb/UsbNetworking/Ax88179/Ax88179.h   | 1127 ++++++++++++
 .../Bus/Usb/UsbNetworking/Ax88772c/Ax88772.h  | 1097 +++++++++++
 .../Bus/Usb/UsbNetworking/Ax88179/Ax88179.c   | 1026 +++++++++++
 .../Usb/UsbNetworking/Ax88179/ComponentName.c |  290 +++
 .../Usb/UsbNetworking/Ax88179/DriverBinding.c |  620 +++++++
 .../Usb/UsbNetworking/Ax88179/SimpleNetwork.c | 1585 ++++++++++++++++
 .../Bus/Usb/UsbNetworking/Ax88772c/Ax88772.c  | 1296 +++++++++++++
 .../UsbNetworking/Ax88772c/ComponentName.c    |  246 +++
 .../UsbNetworking/Ax88772c/DriverBinding.c    |  637 +++++++
 .../UsbNetworking/Ax88772c/SimpleNetwork.c    | 1612 +++++++++++++++++
 12 files changed, 9667 insertions(+)
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/Ax88179.inf
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/Ax88772c.inf
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/Ax88179.h
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/Ax88772.h
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/Ax88179.c
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/ComponentName.c
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/DriverBinding.c
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88179/SimpleNetwork.c
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/Ax88772.c
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/ComponentName.c
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/DriverBinding.c
 create mode 100644 Drivers/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772c/SimpleNetwork.c

-- 
2.17.1


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#58771): https://edk2.groups.io/g/devel/message/58771
Mute This Topic: https://groups.io/mt/74044144/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-