diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/video_console.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/video_console.h b/include/video_console.h index 28d6545188..87f9a58857 100644 --- a/include/video_console.h +++ b/include/video_console.h @@ -400,6 +400,15 @@ int vidconsole_move_rows(struct udevice *dev, uint rowdst, uint rowsrc, int vidconsole_set_row(struct udevice *dev, uint row, int clr); /** + * vidconsole_entry_start() - Set the start position of a vidconsole line + * + * Marks the current cursor position as the start of a line + * + * @dev: Device to adjust + */ +int vidconsole_entry_start(struct udevice *dev); + +/** * vidconsole_put_char() - Output a character to the current console position * * Outputs a character to the console and advances the cursor. This function |