efi_loader: function descriptions efi_unicode_collation.c

Correct function descriptions in efi_unicode_collation.c
Add the Unicode collation protocol to the generated HTML documentation.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
Heinrich Schuchardt 2020-04-10 17:39:23 +02:00
parent bdf329e4a3
commit 76956556fc
2 changed files with 8 additions and 4 deletions

View file

@ -151,3 +151,9 @@ Text IO protocols
.. kernel-doc:: lib/efi_loader/efi_console.c .. kernel-doc:: lib/efi_loader/efi_console.c
:internal: :internal:
Unicode Collation protocol
~~~~~~~~~~~~~~~~~~~~~~~~~~
.. kernel-doc:: lib/efi_loader/efi_unicode_collation.c
:internal:

View file

@ -169,8 +169,8 @@ static bool metai_match(const u16 *string, const u16 *pattern)
* case-insenitively * case-insenitively
* *
* @this: unicode collation protocol instance * @this: unicode collation protocol instance
* @s: string to compare * @string: string to compare
* @p: pattern string * @pattern: pattern string
* *
* The pattern string may use these: * The pattern string may use these:
* - * matches >= 0 characters * - * matches >= 0 characters
@ -199,7 +199,6 @@ static bool EFIAPI efi_metai_match(struct efi_unicode_collation_protocol *this,
* *
* @this: unicode collation protocol instance * @this: unicode collation protocol instance
* @string: string to convert * @string: string to convert
* @p: pattern string
* *
* The conversion is done in place. As long as upper and lower letters use the * The conversion is done in place. As long as upper and lower letters use the
* same number of words this does not pose a problem. * same number of words this does not pose a problem.
@ -221,7 +220,6 @@ static void EFIAPI efi_str_lwr(struct efi_unicode_collation_protocol *this,
* *
* @this: unicode collation protocol instance * @this: unicode collation protocol instance
* @string: string to convert * @string: string to convert
* @p: pattern string
* *
* The conversion is done in place. As long as upper and lower letters use the * The conversion is done in place. As long as upper and lower letters use the
* same number of words this does not pose a problem. * same number of words this does not pose a problem.