diff options
author | Heinrich Schuchardt | 2021-03-28 11:57:31 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2021-04-10 12:00:24 +0200 |
commit | 4bc4798f41cbe000a685f4c037d54f71f0859a3c (patch) | |
tree | fac5c9320cdd68260d623b9973ed9085587cc262 | |
parent | f44c214541b8e194e284a4d08e95f3ed09a0b262 (diff) |
efi_loader: documentation codepage_437[]
Variables cannot be documented via kernel-doc. Avoid 'make htmldocs' build
warning
./include/charset.h:19: warning:
cannot understand function prototype: 'const u16 codepage_437[128]; '
Fixes: 70616a1ed8c7 ("efi_loader: move codepage 437 table")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | include/charset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/charset.h b/include/charset.h index a911160f192..b93d0230923 100644 --- a/include/charset.h +++ b/include/charset.h @@ -13,7 +13,7 @@ #define MAX_UTF8_PER_UTF16 3 -/** +/* * codepage_437 - Unicode to codepage 437 translation table */ extern const u16 codepage_437[128]; |