We modified the version of the driver binding protocol of Tcp Driver in NetworkPkg for overriding the same driver in MdeModulePkg.
Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=1278 Cc: Ye Ting <[email protected]> Cc: Wu Jiaxin <[email protected]> Cc: Fu Siyuan <[email protected]> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Songpeng Li <[email protected]> --- NetworkPkg/TcpDxe/TcpDriver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NetworkPkg/TcpDxe/TcpDriver.c b/NetworkPkg/TcpDxe/TcpDriver.c index 2d4b16cd9e..824e235ce9 100644 --- a/NetworkPkg/TcpDxe/TcpDriver.c +++ b/NetworkPkg/TcpDxe/TcpDriver.c @@ -70,7 +70,7 @@ EFI_DRIVER_BINDING_PROTOCOL gTcp4DriverBinding = { Tcp4DriverBindingSupported, Tcp4DriverBindingStart, Tcp4DriverBindingStop, - 0xa, + 0xb, NULL, NULL }; @@ -79,7 +79,7 @@ EFI_DRIVER_BINDING_PROTOCOL gTcp6DriverBinding = { Tcp6DriverBindingSupported, Tcp6DriverBindingStart, Tcp6DriverBindingStop, - 0xa, + 0xb, NULL, NULL }; -- 2.18.0.windows.1 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

