Commit 99cf9790 authored by Florian Fainelli's avatar Florian Fainelli Committed by Ralf Baechle

tty: serial: bcm63xx_uart: drop bcm_{readl,writel} macros

bcm_{readl,writel} macros expand to __raw_{readl,writel}, use these
directly such that we do not rely on the platform to provide these for
us. As a result, we no longer use bcm63xx_io.h, so remove that inclusion
too.
Signed-off-by: default avatarFlorian Fainelli <florian@openwrt.org>
Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/6201/
parent c8fb5a27
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#include <linux/serial_core.h> #include <linux/serial_core.h>
#include <bcm63xx_regs.h> #include <bcm63xx_regs.h>
#include <bcm63xx_io.h>
#define BCM63XX_NR_UARTS 2 #define BCM63XX_NR_UARTS 2
...@@ -80,13 +79,13 @@ static struct uart_port ports[BCM63XX_NR_UARTS]; ...@@ -80,13 +79,13 @@ static struct uart_port ports[BCM63XX_NR_UARTS];
static inline unsigned int bcm_uart_readl(struct uart_port *port, static inline unsigned int bcm_uart_readl(struct uart_port *port,
unsigned int offset) unsigned int offset)
{ {
return bcm_readl(port->membase + offset); return __raw_readl(port->membase + offset);
} }
static inline void bcm_uart_writel(struct uart_port *port, static inline void bcm_uart_writel(struct uart_port *port,
unsigned int value, unsigned int offset) unsigned int value, unsigned int offset)
{ {
bcm_writel(value, port->membase + offset); __raw_writel(value, port->membase + offset);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment