diff options
author | Tomoya MORINAGA <tomoya.rohm@gmail.com> | 2012-03-26 01:43:02 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-09 15:08:41 -0400 |
commit | b23954a3f73a68a80f260bd3569a81ccc6d13670 (patch) | |
tree | ddd60d0d20a68f1557d51d52e43b3cca1c291862 /drivers/tty/serial/pch_uart.c | |
parent | 2a58364da0c04f8dc42cdfe7a4de9d17e536cda8 (diff) |
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/serial/pch_uart.c')
-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 32ac7ea259db..d035f8ff913d 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) | |||
1083 | ret = PCH_UART_HANDLED_MS_INT; | 1083 | ret = PCH_UART_HANDLED_MS_INT; |
1084 | break; | 1084 | break; |
1085 | default: /* Never junp to this label */ | 1085 | default: /* Never junp to this label */ |
1086 | dev_err(priv->port.dev, "%s:iid=%d (%lu)\n", __func__, | 1086 | dev_err(priv->port.dev, "%s:iid=%02x (%lu)\n", __func__, |
1087 | iid, jiffies); | 1087 | iid, jiffies); |
1088 | ret = -1; | 1088 | ret = -1; |
1089 | break; | 1089 | break; |