diff options
| author | Heinrich Schuchardt <[email protected]> | 2023-03-03 22:04:26 +0100 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2023-03-13 13:56:14 +0100 |
| commit | d3970e04e7125e37ea8c4f3f056b6f5ba868e5f7 (patch) | |
| tree | a257d04467ec4b54402d43d2d763ec15aecf4ccf | |
| parent | 26a35023c41dcceda057173ac6cdcc1de5fd4f31 (diff) | |
efi_loader: describe term_get_char()
Add a function description.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
| -rw-r--r-- | lib/efi_loader/efi_console.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c index 43176309077..a2d137d7a9e 100644 --- a/lib/efi_loader/efi_console.c +++ b/lib/efi_loader/efi_console.c @@ -77,6 +77,14 @@ static struct simple_text_output_mode efi_con_mode = { .cursor_visible = 1, }; +/** + * term_get_char() - read a character from the console + * + * Wait for up to 100 ms to read a character from the console. + * + * @c: pointer to the buffer to receive the character + * Return: 0 on success, 1 otherwise + */ static int term_get_char(s32 *c) { u64 timeout; |
