diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-01-20 19:48:20 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-01-29 10:23:40 +0100 |
commit | 3dd719d4fb2ee10bbc00729f4bcd0fba47a8360d (patch) | |
tree | 18681494cad089d4d8c958baf1154ed5b56e3d2a /lib/efi_loader/efi_file.c | |
parent | ab37facd465b76ac1993d4c5b20100bdc5038aab (diff) |
efi_loader: correct function comment style
Replace @return and @param.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'lib/efi_loader/efi_file.c')
-rw-r--r-- | lib/efi_loader/efi_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c index 9aa003096c6..7a7077e6d03 100644 --- a/lib/efi_loader/efi_file.c +++ b/lib/efi_loader/efi_file.c @@ -1084,7 +1084,7 @@ static const struct efi_file_handle efi_file_handle_protocol = { * efi_file_from_path() - open file via device path * * @fp: device path - * @return: EFI_FILE_PROTOCOL for the file or NULL + * Return: EFI_FILE_PROTOCOL for the file or NULL */ struct efi_file_handle *efi_file_from_path(struct efi_device_path *fp) { |