diff options
author | Tomoya MORINAGA <tomoya.rohm@gmail.com> | 2012-03-26 05:43:02 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-09 19:08:41 (GMT) |
commit | b23954a3f73a68a80f260bd3569a81ccc6d13670 (patch) | |
tree | ddd60d0d20a68f1557d51d52e43b3cca1c291862 /drivers/tty | |
parent | 2a58364da0c04f8dc42cdfe7a4de9d17e536cda8 (diff) | |
download | linux-b23954a3f73a68a80f260bd3569a81ccc6d13670.tar.xz |
pch_uart: change type to %d to %02x
%02x format is easier to understand better than %d.
Signed-off-by: Tomoya MORINAGA <tomoya.rohm@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/pch_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c index 32ac7ea..d035f8f 100644 --- a/drivers/tty/serial/pch_uart.c +++ b/drivers/tty/serial/pch_uart.c @@ -1083,7 +1083,7 @@ static irqreturn_t pch_uart_interrupt(int irq, void *dev_id) ret = PCH_UART_HANDLED_MS_INT; break; default: /* Never junp to this label */ - dev_err(priv->port.dev, "%s:iid=%d (%lu)\n", __func__, + dev_err(priv->port.dev, "%s:iid=%02x (%lu)\n", __func__, iid, jiffies); ret = -1; break; |