diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-09-21 14:12:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 14:24:57 -0400 |
commit | 1b9894f342a39601bb0420b7b8c7e445670c1b51 (patch) | |
tree | 09b063187a7b09690c08dac73d3bd49a72f5dbe8 /include | |
parent | 7043078630bbc9eb908a56e08077c5abe7f2d311 (diff) |
serial core: fix new kernel-doc warnings
Fix new kernel-doc warnings in serial_core.[hc] files.
Warning(include/linux/serial_core.h:485): No description found for parameter 'uport'
Warning(include/linux/serial_core.h:485): Excess function parameter 'port' description in 'uart_handle_dcd_change'
Warning(include/linux/serial_core.h:511): No description found for parameter 'uport'
Warning(include/linux/serial_core.h:511): Excess function parameter 'port' description in 'uart_handle_cts_change'
Warning(drivers/serial/serial_core.c:2437): No description found for parameter 'uport'
Warning(drivers/serial/serial_core.c:2437): Excess function parameter 'port' description in 'uart_add_one_port'
Warning(drivers/serial/serial_core.c:2509): No description found for parameter 'uport'
Warning(drivers/serial/serial_core.c:2509): Excess function parameter 'port' description in 'uart_remove_one_port'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/serial_core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index d58e460844dd..fe661afe0713 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
@@ -477,7 +477,7 @@ static inline int uart_handle_break(struct uart_port *port) | |||
477 | 477 | ||
478 | /** | 478 | /** |
479 | * uart_handle_dcd_change - handle a change of carrier detect state | 479 | * uart_handle_dcd_change - handle a change of carrier detect state |
480 | * @port: uart_port structure for the open port | 480 | * @uport: uart_port structure for the open port |
481 | * @status: new carrier detect status, nonzero if active | 481 | * @status: new carrier detect status, nonzero if active |
482 | */ | 482 | */ |
483 | static inline void | 483 | static inline void |
@@ -503,7 +503,7 @@ uart_handle_dcd_change(struct uart_port *uport, unsigned int status) | |||
503 | 503 | ||
504 | /** | 504 | /** |
505 | * uart_handle_cts_change - handle a change of clear-to-send state | 505 | * uart_handle_cts_change - handle a change of clear-to-send state |
506 | * @port: uart_port structure for the open port | 506 | * @uport: uart_port structure for the open port |
507 | * @status: new clear to send status, nonzero if active | 507 | * @status: new clear to send status, nonzero if active |
508 | */ | 508 | */ |
509 | static inline void | 509 | static inline void |