From 185f812c419f1b4f0d10d9787d59cf9f11a2a600 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Wed, 19 Jan 2022 18:05:50 +0100 Subject: doc: replace @return by Return: Sphinx expects Return: and not @return to indicate a return value. find . -name '*.c' -exec \ sed -i 's/^\(\s\)\*\(\s*\)@return\(\s\)/\1*\2Return:\3/' {} \; find . -name '*.h' -exec \ sed -i 's/^\(\s\)\*\(\s*\)@return\(\s\)/\1*\2Return:\3/' {} \; Signed-off-by: Heinrich Schuchardt --- include/input.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/input.h') diff --git a/include/input.h b/include/input.h index 3285a3ffa2..e99dbb0d33 100644 --- a/include/input.h +++ b/include/input.h @@ -71,7 +71,7 @@ struct stdio_dev; * @param config Input state * @param keycode List of key codes to examine * @param num_keycodes Number of key codes - * @return number of ascii characters sent, or 0 if none, or -1 for an + * Return: number of ascii characters sent, or 0 if none, or -1 for an * internal error */ int input_send_keycodes(struct input_config *config, int keycode[], int count); @@ -90,7 +90,7 @@ int input_send_keycodes(struct input_config *config, int keycode[], int count); * @param config Input state * @param new_keycode New keycode to add/remove * @param release true if this key was released, false if depressed - * @return number of ascii characters sent, or 0 if none, or -1 for an + * Return: number of ascii characters sent, or 0 if none, or -1 for an * internal error */ int input_add_keycode(struct input_config *config, int new_keycode, @@ -112,7 +112,7 @@ int input_add_table(struct input_config *config, int left_keycode, * Test if keys are available to be read * * @param config Input state - * @return 0 if no keys available, 1 if keys are available + * Return: 0 if no keys available, 1 if keys are available */ int input_tstc(struct input_config *config); @@ -122,7 +122,7 @@ int input_tstc(struct input_config *config); * TODO: U-Boot wants 0 for no key, but Ctrl-@ is a valid key... * * @param config Input state - * @return key, or 0 if no key, or -1 if error + * Return: key, or 0 if no key, or -1 if error */ int input_getc(struct input_config *config); @@ -130,7 +130,7 @@ int input_getc(struct input_config *config); * Register a new device with stdio and switch to it if wanted * * @param dev Pointer to device - * @return 0 if ok, -1 on error + * Return: 0 if ok, -1 on error */ int input_stdio_register(struct stdio_dev *dev); @@ -168,7 +168,7 @@ void input_allow_repeats(struct input_config *config, bool allow_repeats); * updating. * * @param config Input state - * @return -1 if no LEDs need updating, other value if they do + * Return: -1 if no LEDs need updating, other value if they do */ int input_leds_changed(struct input_config *config); @@ -179,7 +179,7 @@ int input_leds_changed(struct input_config *config); * * @param config Input state * @param german true to use German keyboard layout, false for US - * @return 0 if ok, -1 on error + * Return: 0 if ok, -1 on error */ int input_add_tables(struct input_config *config, bool german); @@ -188,7 +188,7 @@ int input_add_tables(struct input_config *config, bool german); * * @param config Input state * @param leds Initial LED value (INPUT_LED_ mask), 0 suggested - * @return 0 if ok, -1 on error + * Return: 0 if ok, -1 on error */ int input_init(struct input_config *config, int leds); -- cgit v1.2.3