diff options
| -rw-r--r-- | drivers/tty/serial/8250/8250.c | 5 | ||||
| -rw-r--r-- | drivers/tty/serial/8250/8250.h | 10 | 
2 files changed, 10 insertions, 5 deletions
| diff --git a/drivers/tty/serial/8250/8250.c b/drivers/tty/serial/8250/8250.c index 9674eac5535c..4009e2438e40 100644 --- a/drivers/tty/serial/8250/8250.c +++ b/drivers/tty/serial/8250/8250.c @@ -482,11 +482,6 @@ serial_out_sync(struct uart_8250_port *up, int offset, int value)  	}  } -#define serial_in(up, offset)		\ -	(up->port.serial_in(&(up)->port, (offset))) -#define serial_out(up, offset, value)	\ -	(up->port.serial_out(&(up)->port, (offset), (value))) -  /* Uart divisor latch read */  static inline int _serial_dl_read(struct uart_8250_port *up)  { diff --git a/drivers/tty/serial/8250/8250.h b/drivers/tty/serial/8250/8250.h index ae027be57e25..2868a1da254d 100644 --- a/drivers/tty/serial/8250/8250.h +++ b/drivers/tty/serial/8250/8250.h @@ -86,6 +86,16 @@ struct serial8250_config {  #define SERIAL8250_SHARE_IRQS 0  #endif +static inline int serial_in(struct uart_8250_port *up, int offset) +{ +	return up->port.serial_in(&up->port, offset); +} + +static inline void serial_out(struct uart_8250_port *up, int offset, int value) +{ +	up->port.serial_out(&up->port, offset, value); +} +  #if defined(__alpha__) && !defined(CONFIG_PCI)  /*   * Digital did something really horribly wrong with the OUT1 and OUT2 | 
