staging: dgnc: fix unnamed parameter

This patch fixes a checkpatch warning.

Signed-off-by: Fernando Apesteguia <fernando.apesteguia@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Fernando Apesteguia 2016-12-02 20:35:06 +01:00 committed by Greg Kroah-Hartman
parent c7ea8b5110
commit dbb804bc42
1 changed files with 2 additions and 2 deletions

View File

@ -21,9 +21,9 @@
int dgnc_tty_register(struct dgnc_board *brd);
void dgnc_tty_unregister(struct dgnc_board *brd);
int dgnc_tty_init(struct dgnc_board *);
int dgnc_tty_init(struct dgnc_board *brd);
void dgnc_cleanup_tty(struct dgnc_board *);
void dgnc_cleanup_tty(struct dgnc_board *brd);
void dgnc_input(struct channel_t *ch);
void dgnc_carrier(struct channel_t *ch);