]> git.karo-electronics.de Git - linux-beck.git/commitdiff
pch_uart: change type to u8
authorTomoya MORINAGA <tomoya.rohm@gmail.com>
Mon, 26 Mar 2012 05:43:01 +0000 (14:43 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 Apr 2012 19:08:41 +0000 (12:08 -0700)
Target uart register access size is 8bit.
However, 32bit is used at 2 points.

This patch modifies type "unsigned int" to "unsigned char".

Signed-off-by: Tomoya MORINAGA <tomoya.rohm@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/pch_uart.c

index 110595ed33f5af47a6b07663492650667480d83c..32ac7ea259db83469745c762fd4c9c74855ca4f3 100644 (file)
@@ -552,14 +552,10 @@ static int pch_uart_hal_read(struct eg20t_port *priv, unsigned char *buf,
        return i;
 }
 
-static unsigned int pch_uart_hal_get_iid(struct eg20t_port *priv)
+static unsigned char pch_uart_hal_get_iid(struct eg20t_port *priv)
 {
-       unsigned int iir;
-       int ret;
-
-       iir = ioread8(priv->membase + UART_IIR);
-       ret = (iir & (PCH_UART_IIR_IID | PCH_UART_IIR_TOI | PCH_UART_IIR_IP));
-       return ret;
+       return ioread8(priv->membase + UART_IIR) &\
+                     (PCH_UART_IIR_IID | PCH_UART_IIR_TOI | PCH_UART_IIR_IP);
 }
 
 static u8 pch_uart_hal_get_line_status(struct eg20t_port *priv)
@@ -1045,7 +1041,7 @@ static irqreturn_t pch_uart_interrupt(int irq, void *dev_id)
        unsigned int handled;
        u8 lsr;
        int ret = 0;
-       unsigned int iid;
+       unsigned char iid;
        unsigned long flags;
 
        spin_lock_irqsave(&priv->port.lock, flags);