mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
efi_loader: eliminate efi_install_protocol_interface_ext
As we now have EFI_CALL there is no need for separate functions efi_install_protocol_interface_ext and efi_install_protocol_interface. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:

committed by
Alexander Graf

parent
927ca890b0
commit
1760ef574a
@ -702,9 +702,9 @@ static struct efi_object *efi_search_obj(void *handle)
|
|||||||
/*
|
/*
|
||||||
* Install protocol interface.
|
* Install protocol interface.
|
||||||
*
|
*
|
||||||
* This is the function for internal calls. For the API implementation of the
|
* This function implements the InstallProtocolInterface service.
|
||||||
* InstallProtocolInterface service see function
|
* See the Unified Extensible Firmware Interface (UEFI) specification
|
||||||
* efi_install_protocol_interface_ext.
|
* for details.
|
||||||
*
|
*
|
||||||
* @handle handle on which the protocol shall be installed
|
* @handle handle on which the protocol shall be installed
|
||||||
* @protocol GUID of the protocol to be installed
|
* @protocol GUID of the protocol to be installed
|
||||||
@ -713,14 +713,17 @@ static struct efi_object *efi_search_obj(void *handle)
|
|||||||
* @protocol_interface interface of the protocol implementation
|
* @protocol_interface interface of the protocol implementation
|
||||||
* @return status code
|
* @return status code
|
||||||
*/
|
*/
|
||||||
static efi_status_t EFIAPI efi_install_protocol_interface(void **handle,
|
static efi_status_t EFIAPI efi_install_protocol_interface(
|
||||||
const efi_guid_t *protocol, int protocol_interface_type,
|
void **handle, const efi_guid_t *protocol,
|
||||||
void *protocol_interface)
|
int protocol_interface_type, void *protocol_interface)
|
||||||
{
|
{
|
||||||
struct list_head *lhandle;
|
struct list_head *lhandle;
|
||||||
int i;
|
int i;
|
||||||
efi_status_t r;
|
efi_status_t r;
|
||||||
|
|
||||||
|
EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
|
||||||
|
protocol_interface);
|
||||||
|
|
||||||
if (!handle || !protocol ||
|
if (!handle || !protocol ||
|
||||||
protocol_interface_type != EFI_NATIVE_INTERFACE) {
|
protocol_interface_type != EFI_NATIVE_INTERFACE) {
|
||||||
r = EFI_INVALID_PARAMETER;
|
r = EFI_INVALID_PARAMETER;
|
||||||
@ -768,33 +771,7 @@ static efi_status_t EFIAPI efi_install_protocol_interface(void **handle,
|
|||||||
}
|
}
|
||||||
r = EFI_INVALID_PARAMETER;
|
r = EFI_INVALID_PARAMETER;
|
||||||
out:
|
out:
|
||||||
return r;
|
return EFI_EXIT(r);
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Install protocol interface.
|
|
||||||
*
|
|
||||||
* This function implements the InstallProtocolInterface service.
|
|
||||||
* See the Unified Extensible Firmware Interface (UEFI) specification
|
|
||||||
* for details.
|
|
||||||
*
|
|
||||||
* @handle handle on which the protocol shall be installed
|
|
||||||
* @protocol GUID of the protocol to be installed
|
|
||||||
* @protocol_interface_type type of the interface to be installed,
|
|
||||||
* always EFI_NATIVE_INTERFACE
|
|
||||||
* @protocol_interface interface of the protocol implementation
|
|
||||||
* @return status code
|
|
||||||
*/
|
|
||||||
static efi_status_t EFIAPI efi_install_protocol_interface_ext(void **handle,
|
|
||||||
const efi_guid_t *protocol, int protocol_interface_type,
|
|
||||||
void *protocol_interface)
|
|
||||||
{
|
|
||||||
EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
|
|
||||||
protocol_interface);
|
|
||||||
|
|
||||||
return EFI_EXIT(efi_install_protocol_interface(handle, protocol,
|
|
||||||
protocol_interface_type,
|
|
||||||
protocol_interface));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -1787,9 +1764,10 @@ static efi_status_t EFIAPI efi_install_multiple_protocol_interfaces(
|
|||||||
if (!protocol)
|
if (!protocol)
|
||||||
break;
|
break;
|
||||||
protocol_interface = va_arg(argptr, void*);
|
protocol_interface = va_arg(argptr, void*);
|
||||||
r = efi_install_protocol_interface(handle, protocol,
|
r = EFI_CALL(efi_install_protocol_interface(
|
||||||
EFI_NATIVE_INTERFACE,
|
handle, protocol,
|
||||||
protocol_interface);
|
EFI_NATIVE_INTERFACE,
|
||||||
|
protocol_interface));
|
||||||
if (r != EFI_SUCCESS)
|
if (r != EFI_SUCCESS)
|
||||||
break;
|
break;
|
||||||
i++;
|
i++;
|
||||||
@ -2012,7 +1990,7 @@ static const struct efi_boot_services efi_boot_services = {
|
|||||||
.signal_event = efi_signal_event_ext,
|
.signal_event = efi_signal_event_ext,
|
||||||
.close_event = efi_close_event,
|
.close_event = efi_close_event,
|
||||||
.check_event = efi_check_event,
|
.check_event = efi_check_event,
|
||||||
.install_protocol_interface = efi_install_protocol_interface_ext,
|
.install_protocol_interface = efi_install_protocol_interface,
|
||||||
.reinstall_protocol_interface = efi_reinstall_protocol_interface,
|
.reinstall_protocol_interface = efi_reinstall_protocol_interface,
|
||||||
.uninstall_protocol_interface = efi_uninstall_protocol_interface_ext,
|
.uninstall_protocol_interface = efi_uninstall_protocol_interface_ext,
|
||||||
.handle_protocol = efi_handle_protocol,
|
.handle_protocol = efi_handle_protocol,
|
||||||
|
Reference in New Issue
Block a user