summaryrefslogtreecommitdiffstats
path: root/IntelFrameworkModulePkg/Library/GenericBdsLib/DevicePath.c
diff options
context:
space:
mode:
authorHao A Wu <hao.a.wu@intel.com>2019-05-27 14:19:41 +0800
committerHao A Wu <hao.a.wu@intel.com>2019-07-03 13:24:07 +0800
commitaa7fc1c11c3d57d82842dbede50d064639671a98 (patch)
tree890d82de813ba85911d1762402e45d80dd11670a /IntelFrameworkModulePkg/Library/GenericBdsLib/DevicePath.c
parent4286eb22f4aec33b90574b998a31f8bd34dd4f47 (diff)
downloadedk2-aa7fc1c11c3d57d82842dbede50d064639671a98.tar.gz
edk2-aa7fc1c11c3d57d82842dbede50d064639671a98.tar.bz2
edk2-aa7fc1c11c3d57d82842dbede50d064639671a98.zip
Remove IntelFrameworkModulePkg
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=1605 Please note a subsequent commit will followed to update the information in Maintainers.txt to reflect this package removal. Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif.lindholm@linaro.org> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Hao A Wu <hao.a.wu@intel.com> Acked-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
Diffstat (limited to 'IntelFrameworkModulePkg/Library/GenericBdsLib/DevicePath.c')
-rw-r--r--IntelFrameworkModulePkg/Library/GenericBdsLib/DevicePath.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/IntelFrameworkModulePkg/Library/GenericBdsLib/DevicePath.c b/IntelFrameworkModulePkg/Library/GenericBdsLib/DevicePath.c
deleted file mode 100644
index a0b9da880d..0000000000
--- a/IntelFrameworkModulePkg/Library/GenericBdsLib/DevicePath.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/** @file
- BDS internal function define the default device path string, it can be
- replaced by platform device path.
-
-Copyright (c) 2004 - 2013, Intel Corporation. All rights reserved.<BR>
-SPDX-License-Identifier: BSD-2-Clause-Patent
-
-**/
-
-#include "InternalBdsLib.h"
-
-/**
- This function converts an input device structure to a Unicode string.
-
- @param DevPath A pointer to the device path structure.
-
- @return A new allocated Unicode string that represents the device path.
-
-**/
-CHAR16 *
-EFIAPI
-DevicePathToStr (
- IN EFI_DEVICE_PATH_PROTOCOL *DevPath
- )
-{
- return ConvertDevicePathToText (DevPath, TRUE, TRUE);
-}