@@ -527,12 +527,12 @@ static void switch_serial_input(void)
printk("\n");
}
-static void __serial_rx(char c, struct cpu_user_regs *regs)
+static void __serial_rx(char c)
{
switch ( console_rx )
{
case 0:
- return handle_keypress(c, regs);
+ return handle_keypress(c, get_irq_regs());
case 1:
/*
@@ -579,7 +579,7 @@ static void __serial_rx(char c, struct c
#endif
}
-static void cf_check serial_rx(char c, struct cpu_user_regs *regs)
+static void cf_check serial_rx(char c)
{
static int switch_code_count = 0;
@@ -595,10 +595,10 @@ static void cf_check serial_rx(char c, s
}
for ( ; switch_code_count != 0; switch_code_count-- )
- __serial_rx(switch_code, regs);
+ __serial_rx(switch_code);
/* Finally process the just-received character. */
- __serial_rx(c, regs);
+ __serial_rx(c);
}
static void cf_check notify_dom0_con_ring(void *unused)
@@ -68,7 +68,7 @@ void serial_rx_interrupt(struct serial_p
spin_unlock_irqrestore(&port->rx_lock, flags);
if ( fn != NULL )
- (*fn)(c & 0x7f, regs);
+ fn(c & 0x7f);
}
void serial_tx_interrupt(struct serial_port *port, struct cpu_user_regs *regs)
@@ -118,7 +118,7 @@ size_t pv_console_rx(struct cpu_user_reg
{
c = cons_ring->in[MASK_XENCONS_IDX(cons++, cons_ring->in)];
if ( cons_rx_handler )
- cons_rx_handler(c, regs);
+ cons_rx_handler(c);
recv++;
}
@@ -15,7 +15,7 @@
struct cpu_user_regs;
/* Register a character-receive hook on the specified COM port. */
-typedef void (*serial_rx_fn)(char c, struct cpu_user_regs *regs);
+typedef void (*serial_rx_fn)(char c);
void serial_set_rx_handler(int handle, serial_rx_fn fn);
/* Number of characters we buffer for a polling receiver. */
In the one place where it's needed, get_irq_regs() can be used instead. This is in preparation of dropping the register parameters from IRQ handler functions. Signed-off-by: Jan Beulich <jbeulich@suse.com>