diff options
author | Tom Rini <trini@konsulko.com> | 2022-01-20 09:39:45 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-20 09:39:45 -0500 |
commit | 280db76f1526c2e3657c013ab679a120eed8e6b7 (patch) | |
tree | 7843623ac19ed2d714792236b2be748270986f9c /lib/efi_selftest/efi_selftest_controllers.c | |
parent | 068415eadefbbc81f14d4ce61fcf7a7eb39650d4 (diff) | |
parent | 185f812c419f1b4f0d10d9787d59cf9f11a2a600 (diff) |
Merge tag 'doc-2022-04-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request doc-2022-04-rc1
Replace @return by Return: in code comments.
Diffstat (limited to 'lib/efi_selftest/efi_selftest_controllers.c')
-rw-r--r-- | lib/efi_selftest/efi_selftest_controllers.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/efi_selftest/efi_selftest_controllers.c b/lib/efi_selftest/efi_selftest_controllers.c index 38720bb63d3..d2bbd1c4f65 100644 --- a/lib/efi_selftest/efi_selftest_controllers.c +++ b/lib/efi_selftest/efi_selftest_controllers.c @@ -35,7 +35,7 @@ static efi_handle_t handle_driver; * @handle handle on which child controllers are installed * @protocol protocol for which the child controllers were installed * @count number of child controllers - * @return status code + * Return: status code */ static efi_status_t count_child_controllers(efi_handle_t handle, efi_guid_t *protocol, @@ -69,7 +69,7 @@ static efi_status_t count_child_controllers(efi_handle_t handle, * @this driver binding protocol * @controller_handle handle of the controller * @remaining_device_path path specifying the child controller - * @return status code + * Return: status code */ static efi_status_t EFIAPI supported( struct efi_driver_binding_protocol *this, @@ -106,7 +106,7 @@ static efi_status_t EFIAPI supported( * @this driver binding protocol * @controller_handle handle of the controller * @remaining_device_path path specifying the child controller - * @return status code + * Return: status code */ static efi_status_t EFIAPI start( struct efi_driver_binding_protocol *this, @@ -161,7 +161,7 @@ static efi_status_t EFIAPI start( * * @controller_handle parent controller * @child_handle child controller - * @return status code + * Return: status code */ static efi_status_t disconnect_child(efi_handle_t controller_handle, efi_handle_t child_handle) @@ -191,7 +191,7 @@ static efi_status_t disconnect_child(efi_handle_t controller_handle, * @controller_handle handle of the controller * @number_of_children number of child controllers to remove * @child_handle_buffer handles of the child controllers to remove - * @return status code + * Return: status code */ static efi_status_t EFIAPI stop( struct efi_driver_binding_protocol *this, |