Skip to content

Commit

Permalink
tty: serial: bcm63xx_uart: define UART_REG_SIZE constant
Browse files Browse the repository at this point in the history
The bcm63xx_uart driver uses RSET_UART_SIZE which is a constant defined
for MIPS-based BCM63xx platforms, pull this constant value from the
MIPS-specific header and put it in include/linux/serial_bcm63xx.h to
make the driver platform agnostic.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Florian Fainelli authored and Greg Kroah-Hartman committed Mar 1, 2014
1 parent f04430c commit 5811712
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/tty/serial/bcm63xx_uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ static int bcm_uart_request_port(struct uart_port *port)
{
unsigned int size;

size = RSET_UART_SIZE;
size = UART_REG_SIZE;
if (!request_mem_region(port->mapbase, size, "bcm63xx")) {
dev_err(port->dev, "Memory region busy\n");
return -EBUSY;
Expand All @@ -609,7 +609,7 @@ static int bcm_uart_request_port(struct uart_port *port)
*/
static void bcm_uart_release_port(struct uart_port *port)
{
release_mem_region(port->mapbase, RSET_UART_SIZE);
release_mem_region(port->mapbase, UART_REG_SIZE);
iounmap(port->membase);
}

Expand Down
2 changes: 2 additions & 0 deletions include/linux/serial_bcm63xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,6 @@
UART_FIFO_PARERR_MASK | \
UART_FIFO_BRKDET_MASK)

#define UART_REG_SIZE 24

#endif /* _LINUX_SERIAL_BCM63XX_H */

0 comments on commit 5811712

Please sign in to comment.