Commit 2905697a authored by Maarten Brock's avatar Maarten Brock Committed by Greg Kroah-Hartman

serial-uartlite: Constify uartlite_be/uartlite_le

Made uartlite_be and uartlite_le constants.
Signed-off-by: default avatarMaarten Brock <m.brock@vanmierlo.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent acf5e6c8
...@@ -72,7 +72,7 @@ static void uartlite_outbe32(u32 val, void __iomem *addr) ...@@ -72,7 +72,7 @@ static void uartlite_outbe32(u32 val, void __iomem *addr)
iowrite32be(val, addr); iowrite32be(val, addr);
} }
static struct uartlite_reg_ops uartlite_be = { static const struct uartlite_reg_ops uartlite_be = {
.in = uartlite_inbe32, .in = uartlite_inbe32,
.out = uartlite_outbe32, .out = uartlite_outbe32,
}; };
...@@ -87,21 +87,21 @@ static void uartlite_outle32(u32 val, void __iomem *addr) ...@@ -87,21 +87,21 @@ static void uartlite_outle32(u32 val, void __iomem *addr)
iowrite32(val, addr); iowrite32(val, addr);
} }
static struct uartlite_reg_ops uartlite_le = { static const struct uartlite_reg_ops uartlite_le = {
.in = uartlite_inle32, .in = uartlite_inle32,
.out = uartlite_outle32, .out = uartlite_outle32,
}; };
static inline u32 uart_in32(u32 offset, struct uart_port *port) static inline u32 uart_in32(u32 offset, struct uart_port *port)
{ {
struct uartlite_reg_ops *reg_ops = port->private_data; const struct uartlite_reg_ops *reg_ops = port->private_data;
return reg_ops->in(port->membase + offset); return reg_ops->in(port->membase + offset);
} }
static inline void uart_out32(u32 val, u32 offset, struct uart_port *port) static inline void uart_out32(u32 val, u32 offset, struct uart_port *port)
{ {
struct uartlite_reg_ops *reg_ops = port->private_data; const struct uartlite_reg_ops *reg_ops = port->private_data;
reg_ops->out(val, port->membase + offset); reg_ops->out(val, 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