efi_loader: function descriptions efi_unicode_collation.c
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Fri, 10 Apr 2020 15:39:23 +0000 (17:39 +0200)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 16 Apr 2020 06:10:01 +0000 (08:10 +0200)
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>
doc/api/efi.rst
lib/efi_loader/efi_unicode_collation.c

index 631c0ceb1df1288824293499317dc8b668d29a28..b9c0c6efc588fdf4fc1e1c0a2d9c1e13b8465d6f 100644 (file)
@@ -151,3 +151,9 @@ Text IO protocols
 
 .. kernel-doc:: lib/efi_loader/efi_console.c
    :internal:
+
+Unicode Collation protocol
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. kernel-doc:: lib/efi_loader/efi_unicode_collation.c
+   :internal:
index c700be875600a43e052bbfe6cf1213605558e3f3..6655c68092e410dc226da389fd035a310b00d5c1 100644 (file)
@@ -169,8 +169,8 @@ static bool metai_match(const u16 *string, const u16 *pattern)
  *                    case-insenitively
  *
  * @this:      unicode collation protocol instance
- * @s:         string to compare
- * @p:         pattern string
+ * @string:    string to compare
+ * @pattern:   pattern string
  *
  * The pattern string may use these:
  *     - * matches >= 0 characters
@@ -199,7 +199,6 @@ static bool EFIAPI efi_metai_match(struct efi_unicode_collation_protocol *this,
  *
  * @this:      unicode collation protocol instance
  * @string:    string to convert
- * @p:         pattern string
  *
  * 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.
@@ -221,7 +220,6 @@ static void EFIAPI efi_str_lwr(struct efi_unicode_collation_protocol *this,
  *
  * @this:      unicode collation protocol instance
  * @string:    string to convert
- * @p:         pattern string
  *
  * 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.