mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
staging: dgnc: add identifiers to function parameters
Fix checkpatch.pl warnings of the form "function definition argument 'foo' should also have an identifier name". Signed-off-by: Ashish Kalra <eashishkalra@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
43aa37d522
commit
7e739297cd
@ -88,12 +88,12 @@ struct board_ops {
|
||||
void (*flush_uart_read)(struct channel_t *ch);
|
||||
void (*disable_receiver)(struct channel_t *ch);
|
||||
void (*enable_receiver)(struct channel_t *ch);
|
||||
void (*send_break)(struct channel_t *ch, int);
|
||||
void (*send_break)(struct channel_t *ch, int msec);
|
||||
void (*send_start_character)(struct channel_t *ch);
|
||||
void (*send_stop_character)(struct channel_t *ch);
|
||||
void (*copy_data_from_queue_to_uart)(struct channel_t *ch);
|
||||
uint (*get_uart_bytes_left)(struct channel_t *ch);
|
||||
void (*send_immediate_char)(struct channel_t *ch, unsigned char);
|
||||
void (*send_immediate_char)(struct channel_t *ch, unsigned char c);
|
||||
};
|
||||
|
||||
/* Device flag definitions for bd_flags. */
|
||||
|
Loading…
Reference in New Issue
Block a user