mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-08 15:04:45 +00:00
serial: convert uart sysrq handling to u8
Propagate u8 from the sysrq code further up to serial's uart_handle_sysrq_char() and friends. Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org> Link: https://lore.kernel.org/r/20230712081811.29004-6-jirislaby@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a27f3b7233
commit
12ae2359eb
@ -3505,7 +3505,7 @@ void uart_insert_char(struct uart_port *port, unsigned int status,
|
||||
EXPORT_SYMBOL_GPL(uart_insert_char);
|
||||
|
||||
#ifdef CONFIG_MAGIC_SYSRQ_SERIAL
|
||||
static const char sysrq_toggle_seq[] = CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE;
|
||||
static const u8 sysrq_toggle_seq[] = CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE;
|
||||
|
||||
static void uart_sysrq_on(struct work_struct *w)
|
||||
{
|
||||
@ -3528,7 +3528,7 @@ static DECLARE_WORK(sysrq_enable_work, uart_sysrq_on);
|
||||
* Returns: %false if @ch is out of enabling sequence and should be
|
||||
* handled some other way, %true if @ch was consumed.
|
||||
*/
|
||||
bool uart_try_toggle_sysrq(struct uart_port *port, unsigned int ch)
|
||||
bool uart_try_toggle_sysrq(struct uart_port *port, u8 ch)
|
||||
{
|
||||
int sysrq_toggle_seq_len = strlen(sysrq_toggle_seq);
|
||||
|
||||
|
@ -569,7 +569,7 @@ struct uart_port {
|
||||
struct serial_port_device *port_dev; /* serial core port device */
|
||||
|
||||
unsigned long sysrq; /* sysrq timeout */
|
||||
unsigned int sysrq_ch; /* char for sysrq */
|
||||
u8 sysrq_ch; /* char for sysrq */
|
||||
unsigned char has_sysrq;
|
||||
unsigned char sysrq_seq; /* index in sysrq_toggle_seq */
|
||||
|
||||
@ -910,9 +910,9 @@ void uart_xchar_out(struct uart_port *uport, int offset);
|
||||
#ifdef CONFIG_MAGIC_SYSRQ_SERIAL
|
||||
#define SYSRQ_TIMEOUT (HZ * 5)
|
||||
|
||||
bool uart_try_toggle_sysrq(struct uart_port *port, unsigned int ch);
|
||||
bool uart_try_toggle_sysrq(struct uart_port *port, u8 ch);
|
||||
|
||||
static inline int uart_handle_sysrq_char(struct uart_port *port, unsigned int ch)
|
||||
static inline int uart_handle_sysrq_char(struct uart_port *port, u8 ch)
|
||||
{
|
||||
if (!port->sysrq)
|
||||
return 0;
|
||||
@ -931,7 +931,7 @@ static inline int uart_handle_sysrq_char(struct uart_port *port, unsigned int ch
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline int uart_prepare_sysrq_char(struct uart_port *port, unsigned int ch)
|
||||
static inline int uart_prepare_sysrq_char(struct uart_port *port, u8 ch)
|
||||
{
|
||||
if (!port->sysrq)
|
||||
return 0;
|
||||
@ -952,7 +952,7 @@ static inline int uart_prepare_sysrq_char(struct uart_port *port, unsigned int c
|
||||
|
||||
static inline void uart_unlock_and_check_sysrq(struct uart_port *port)
|
||||
{
|
||||
int sysrq_ch;
|
||||
u8 sysrq_ch;
|
||||
|
||||
if (!port->has_sysrq) {
|
||||
spin_unlock(&port->lock);
|
||||
@ -971,7 +971,7 @@ static inline void uart_unlock_and_check_sysrq(struct uart_port *port)
|
||||
static inline void uart_unlock_and_check_sysrq_irqrestore(struct uart_port *port,
|
||||
unsigned long flags)
|
||||
{
|
||||
int sysrq_ch;
|
||||
u8 sysrq_ch;
|
||||
|
||||
if (!port->has_sysrq) {
|
||||
spin_unlock_irqrestore(&port->lock, flags);
|
||||
@ -987,11 +987,11 @@ static inline void uart_unlock_and_check_sysrq_irqrestore(struct uart_port *port
|
||||
handle_sysrq(sysrq_ch);
|
||||
}
|
||||
#else /* CONFIG_MAGIC_SYSRQ_SERIAL */
|
||||
static inline int uart_handle_sysrq_char(struct uart_port *port, unsigned int ch)
|
||||
static inline int uart_handle_sysrq_char(struct uart_port *port, u8 ch)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
static inline int uart_prepare_sysrq_char(struct uart_port *port, unsigned int ch)
|
||||
static inline int uart_prepare_sysrq_char(struct uart_port *port, u8 ch)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user