Re: [U-Boot] [PATCH v2 04/18] efi_loader: fix efi_convert_device_node_to_text

2017-11-17 Thread Simon Glass
On 12 November 2017 at 07:02, Heinrich Schuchardt wrote: > We need to implement to different functions for the > EFI_DEVICE_PATH_TO_TEXT_PROTOCOL: > ConvertDeviceNodeToText > ConvertDevicePathToText > > A recent patch screwed up efi_convert_device_node_to_text > to expect a

[U-Boot] [PATCH v2 04/18] efi_loader: fix efi_convert_device_node_to_text

2017-11-12 Thread Heinrich Schuchardt
We need to implement to different functions for the EFI_DEVICE_PATH_TO_TEXT_PROTOCOL: ConvertDeviceNodeToText ConvertDevicePathToText A recent patch screwed up efi_convert_device_node_to_text to expect a device path and not a node. The patch makes both service functions work again.