[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] xen/serial: address violations of MISRA C:2012 Rule 8.2
commit 764851a8be3437d8e925b9f1942c82eda1a1ac2d Author: Federico Serafini <federico.serafini@xxxxxxxxxxx> AuthorDate: Thu Nov 23 10:08:38 2023 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Nov 23 10:08:38 2023 +0100 xen/serial: address violations of MISRA C:2012 Rule 8.2 Add missing parameter names. No functional change. Signed-off-by: Federico Serafini <federico.serafini@xxxxxxxxxxx> Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> --- xen/include/xen/serial.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/xen/include/xen/serial.h b/xen/include/xen/serial.h index cf9701986f..8d64fb5e86 100644 --- a/xen/include/xen/serial.h +++ b/xen/include/xen/serial.h @@ -15,7 +15,7 @@ struct cpu_user_regs; /* Register a character-receive hook on the specified COM port. */ -typedef void (*serial_rx_fn)(char, struct cpu_user_regs *); +typedef void (*serial_rx_fn)(char c, struct cpu_user_regs *regs); void serial_set_rx_handler(int handle, serial_rx_fn fn); /* Number of characters we buffer for a polling receiver. */ @@ -63,31 +63,31 @@ struct serial_port { struct uart_driver { /* Driver initialisation (pre- and post-IRQ subsystem setup). */ - void (*init_preirq)(struct serial_port *); - void (*init_irq)(struct serial_port *); - void (*init_postirq)(struct serial_port *); + void (*init_preirq)(struct serial_port *port); + void (*init_irq)(struct serial_port *port); + void (*init_postirq)(struct serial_port *port); /* Hook to clean up after Xen bootstrap (before domain 0 runs). */ - void (*endboot)(struct serial_port *); + void (*endboot)(struct serial_port *port); /* Driver suspend/resume. */ - void (*suspend)(struct serial_port *); - void (*resume)(struct serial_port *); + void (*suspend)(struct serial_port *port); + void (*resume)(struct serial_port *port); /* Return number of characters the port can hold for transmit, * or -EIO if port is inaccesible */ - int (*tx_ready)(struct serial_port *); + int (*tx_ready)(struct serial_port *port); /* Put a character onto the serial line. */ - void (*putc)(struct serial_port *, char); + void (*putc)(struct serial_port *port, char c); /* Flush accumulated characters. */ - void (*flush)(struct serial_port *); + void (*flush)(struct serial_port *port); /* Get a character from the serial line: returns 0 if none available. */ - int (*getc)(struct serial_port *, char *); + int (*getc)(struct serial_port *port, char *pc); /* Get IRQ number for this port's serial line: returns -1 if none. */ - int (*irq)(struct serial_port *); + int (*irq)(struct serial_port *port); /* Unmask TX interrupt */ - void (*start_tx)(struct serial_port *); + void (*start_tx)(struct serial_port *port); /* Mask TX interrupt */ - void (*stop_tx)(struct serial_port *); + void (*stop_tx)(struct serial_port *port); /* Get serial information */ - const struct vuart_info *(*vuart_info)(struct serial_port *); + const struct vuart_info *(*vuart_info)(struct serial_port *port); }; /* 'Serial handles' are composed from the following fields. */ -- generated by git-patchbot for /home/xen/git/xen.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |