tty: serial: qcom_geni_serial: Use u32 for register variables
Use u32 rather than unsigned long for register variables for clarity and consistency. Signed-off-by: Ryan Case <ryandcase@chromium.org> Reviewed-by: Stephen Boyd <swboyd@chromium.org> Reviewed-by: Evan Green <evgreen@chromium.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bdc05a8a3f
commit
385298abbe
@ -758,12 +758,12 @@ out_write_wakeup:
|
||||
|
||||
static irqreturn_t qcom_geni_serial_isr(int isr, void *dev)
|
||||
{
|
||||
unsigned int m_irq_status;
|
||||
unsigned int s_irq_status;
|
||||
unsigned int geni_status;
|
||||
u32 m_irq_en;
|
||||
u32 m_irq_status;
|
||||
u32 s_irq_status;
|
||||
u32 geni_status;
|
||||
struct uart_port *uport = dev;
|
||||
unsigned long flags;
|
||||
unsigned int m_irq_en;
|
||||
bool drop_rx = false;
|
||||
struct tty_port *tport = &uport->state->port;
|
||||
struct qcom_geni_serial_port *port = to_dev_port(uport, uport);
|
||||
@ -842,7 +842,7 @@ static void qcom_geni_serial_shutdown(struct uart_port *uport)
|
||||
static int qcom_geni_serial_port_setup(struct uart_port *uport)
|
||||
{
|
||||
struct qcom_geni_serial_port *port = to_dev_port(uport, uport);
|
||||
unsigned int rxstale = DEFAULT_BITS_PER_CHAR * STALE_TIMEOUT;
|
||||
u32 rxstale = DEFAULT_BITS_PER_CHAR * STALE_TIMEOUT;
|
||||
u32 proto;
|
||||
|
||||
if (uart_console(uport)) {
|
||||
@ -941,14 +941,14 @@ static void qcom_geni_serial_set_termios(struct uart_port *uport,
|
||||
struct ktermios *termios, struct ktermios *old)
|
||||
{
|
||||
unsigned int baud;
|
||||
unsigned int bits_per_char;
|
||||
unsigned int tx_trans_cfg;
|
||||
unsigned int tx_parity_cfg;
|
||||
unsigned int rx_trans_cfg;
|
||||
unsigned int rx_parity_cfg;
|
||||
unsigned int stop_bit_len;
|
||||
u32 bits_per_char;
|
||||
u32 tx_trans_cfg;
|
||||
u32 tx_parity_cfg;
|
||||
u32 rx_trans_cfg;
|
||||
u32 rx_parity_cfg;
|
||||
u32 stop_bit_len;
|
||||
unsigned int clk_div;
|
||||
unsigned long ser_clk_cfg;
|
||||
u32 ser_clk_cfg;
|
||||
struct qcom_geni_serial_port *port = to_dev_port(uport, uport);
|
||||
unsigned long clk_rate;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user