Changeset 80721 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/IScsiDxe/IScsiDriver.c
- Timestamp:
- Sep 11, 2019 8:46:37 AM (5 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-129237 /vendor/edk2/current 103735-103757,103769-103776,129194-133213
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/IScsiDxe/IScsiDriver.c
r77662 r80721 2 2 The entry point of IScsi driver. 3 3 4 Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR> 4 Copyright (c) 2019, NVIDIA Corporation. All rights reserved. 5 Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR> 5 6 (C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR> 6 7 7 This program and the accompanying materials 8 are licensed and made available under the terms and conditions of the BSD License 9 which accompanies this distribution. The full text of the license may be found at 10 http://opensource.org/licenses/bsd-license.php 11 12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 8 SPDX-License-Identifier: BSD-2-Clause-Patent 14 9 15 10 **/ … … 1862 1857 1863 1858 Error2: 1864 gBS->UninstallMultipleProtocolInterfaces ( 1865 gIScsiIp6DriverBinding.DriverBindingHandle, 1866 &gEfiDriverBindingProtocolGuid, 1867 &gIScsiIp6DriverBinding, 1868 &gEfiComponentName2ProtocolGuid, 1869 &gIScsiComponentName2, 1870 &gEfiComponentNameProtocolGuid, 1871 &gIScsiComponentName, 1872 NULL 1873 ); 1859 EfiLibUninstallDriverBindingComponentName2 ( 1860 &gIScsiIp6DriverBinding, 1861 &gIScsiComponentName, 1862 &gIScsiComponentName2 1863 ); 1874 1864 1875 1865 Error1: 1876 gBS->UninstallMultipleProtocolInterfaces ( 1877 ImageHandle, 1878 &gEfiDriverBindingProtocolGuid, 1879 &gIScsiIp4DriverBinding, 1880 &gEfiComponentName2ProtocolGuid, 1881 &gIScsiComponentName2, 1882 &gEfiComponentNameProtocolGuid, 1883 &gIScsiComponentName, 1884 NULL 1885 ); 1866 EfiLibUninstallDriverBindingComponentName2 ( 1867 &gIScsiIp4DriverBinding, 1868 &gIScsiComponentName, 1869 &gIScsiComponentName2 1870 ); 1886 1871 1887 1872 return Status;
Note:
See TracChangeset
for help on using the changeset viewer.