]> git.sur5r.net Git - u-boot/commitdiff
efi_loader: comments for EFI_DEVICE_PATH_TO_TEXT_PROTOCOL
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 23 Nov 2017 21:21:58 +0000 (22:21 +0100)
committerAlexander Graf <agraf@suse.de>
Fri, 1 Dec 2017 12:43:00 +0000 (13:43 +0100)
Provide comments for efi_convert_device_node_to_text()
and efi_convert_device_path_to_text().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
lib/efi_loader/efi_device_path_to_text.c

index 43af5dfd8ddd17a83a72f28d726ca81d9ff80072..9e62e4a929cea67fd1c249ae2908e1d4e629233b 100644 (file)
@@ -218,6 +218,18 @@ static char *efi_convert_single_device_node_to_text(
        return str;
 }
 
+/*
+ * This function implements the ConvertDeviceNodeToText service of the
+ * EFI_DEVICE_PATH_TO_TEXT_PROTOCOL.
+ * See the Unified Extensible Firmware Interface (UEFI) specification
+ * for details.
+ *
+ * device_node         device node to be converted
+ * display_only                true if the shorter text represenation shall be used
+ * allow_shortcuts     true if shortcut forms may be used
+ * @return             text represenation of the device path
+ *                     NULL if out of memory of device_path is NULL
+ */
 static uint16_t EFIAPI *efi_convert_device_node_to_text(
                struct efi_device_path *device_node,
                bool display_only,
@@ -239,6 +251,18 @@ out:
        return text;
 }
 
+/*
+ * This function implements the ConvertDevicePathToText service of the
+ * EFI_DEVICE_PATH_TO_TEXT_PROTOCOL.
+ * See the Unified Extensible Firmware Interface (UEFI) specification
+ * for details.
+ *
+ * device_path         device path to be converted
+ * display_only                true if the shorter text represenation shall be used
+ * allow_shortcuts     true if shortcut forms may be used
+ * @return             text represenation of the device path
+ *                     NULL if out of memory of device_path is NULL
+ */
 static uint16_t EFIAPI *efi_convert_device_path_to_text(
                struct efi_device_path *device_path,
                bool display_only,