Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tty: stop using ndash in kernel-doc

An ndash used instead of a single dash renders a bullet to the result.
So use only single dashes in kernel-doc.

Signed-off-by: "Jiri Slaby (SUSE)" <jirislaby@kernel.org>
Link: https://lore.kernel.org/r/20230919085156.1578-11-jirislaby@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Jiri Slaby (SUSE) and committed by
Greg Kroah-Hartman
c38f45ef 71067fb7

+12 -12
+4 -4
drivers/tty/tty_io.c
··· 3300 3300 EXPORT_SYMBOL(tty_unregister_device); 3301 3301 3302 3302 /** 3303 - * __tty_alloc_driver -- allocate tty driver 3303 + * __tty_alloc_driver - allocate tty driver 3304 3304 * @lines: count of lines this driver can handle at most 3305 3305 * @owner: module which is responsible for this driver 3306 3306 * @flags: some of %TTY_DRIVER_ flags, will be set in driver->flags ··· 3393 3393 } 3394 3394 3395 3395 /** 3396 - * tty_driver_kref_put -- drop a reference to a tty driver 3396 + * tty_driver_kref_put - drop a reference to a tty driver 3397 3397 * @driver: driver of which to drop the reference 3398 3398 * 3399 3399 * The final put will destroy and free up the driver. ··· 3405 3405 EXPORT_SYMBOL(tty_driver_kref_put); 3406 3406 3407 3407 /** 3408 - * tty_register_driver -- register a tty driver 3408 + * tty_register_driver - register a tty driver 3409 3409 * @driver: driver to register 3410 3410 * 3411 3411 * Called by a tty driver to register itself. ··· 3470 3470 EXPORT_SYMBOL(tty_register_driver); 3471 3471 3472 3472 /** 3473 - * tty_unregister_driver -- unregister a tty driver 3473 + * tty_unregister_driver - unregister a tty driver 3474 3474 * @driver: driver to unregister 3475 3475 * 3476 3476 * Called by a tty driver to unregister itself.
+3 -3
drivers/tty/tty_port.c
··· 79 79 EXPORT_SYMBOL_GPL(tty_port_default_client_ops); 80 80 81 81 /** 82 - * tty_port_init -- initialize tty_port 82 + * tty_port_init - initialize tty_port 83 83 * @port: tty_port to initialize 84 84 * 85 85 * Initializes the state of struct tty_port. When a port was initialized using ··· 267 267 EXPORT_SYMBOL(tty_port_free_xmit_buf); 268 268 269 269 /** 270 - * tty_port_destroy -- destroy inited port 270 + * tty_port_destroy - destroy inited port 271 271 * @port: tty port to be destroyed 272 272 * 273 273 * When a port was initialized using tty_port_init(), one has to destroy the ··· 297 297 } 298 298 299 299 /** 300 - * tty_port_put -- drop a reference to tty_port 300 + * tty_port_put - drop a reference to tty_port 301 301 * @port: port to drop a reference of (can be NULL) 302 302 * 303 303 * The final put will destroy and free up the @port using
+1 -1
drivers/tty/vt/consolemap.c
··· 205 205 FIELD_PREP(UNI_GLYPH_BITS, (glyph))) 206 206 207 207 /** 208 - * struct uni_pagedict -- unicode directory 208 + * struct uni_pagedict - unicode directory 209 209 * 210 210 * @uni_pgdir: 32*32*64 table with glyphs 211 211 * @refcount: reference count of this structure
+2 -2
drivers/tty/vt/vc_screen.c
··· 174 174 } 175 175 176 176 /** 177 - * vcs_vc -- return VC for @inode 177 + * vcs_vc - return VC for @inode 178 178 * @inode: inode for which to return a VC 179 179 * @viewed: returns whether this console is currently foreground (viewed) 180 180 * ··· 199 199 } 200 200 201 201 /** 202 - * vcs_size -- return size for a VC in @vc 202 + * vcs_size - return size for a VC in @vc 203 203 * @vc: which VC 204 204 * @attr: does it use attributes? 205 205 * @unicode: is it unicode?
+2 -2
drivers/tty/vt/vt.c
··· 2588 2588 2589 2589 2590 2590 /** 2591 - * vc_sanitize_unicode -- Replace invalid Unicode code points with U+FFFD 2591 + * vc_sanitize_unicode - Replace invalid Unicode code points with U+FFFD 2592 2592 * @c: the received character, or U+FFFD for invalid sequences. 2593 2593 */ 2594 2594 static inline int vc_sanitize_unicode(const int c) ··· 2600 2600 } 2601 2601 2602 2602 /** 2603 - * vc_translate_unicode -- Combine UTF-8 into Unicode in @vc_utf_char 2603 + * vc_translate_unicode - Combine UTF-8 into Unicode in @vc_utf_char 2604 2604 * @vc: virtual console 2605 2605 * @c: character to translate 2606 2606 * @rescan: we return true if we need more (continuation) data