diff options
author | Philippe Proulx <philippe.proulx@savoirfairelinux.com> | 2013-10-31 09:39:58 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-31 12:03:20 -0400 |
commit | 80d8611dd07603736d14e4a942546bdc84dd5477 (patch) | |
tree | 1662d27be09dc5df42feb38f72c9006ef5d0d52b /drivers/tty/serial | |
parent | d4f9e7b3d12e92ede642f6f4fc7d959f06da8ccc (diff) |
serial: omap: fix missing comma
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>,
Signed-off-by: Philippe Proulx <philippe.proulx@savoirfairelinux.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial')
-rw-r--r-- | drivers/tty/serial/omap-serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 97c07f68cca0..fa511ebab67c 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c | |||
@@ -1723,7 +1723,7 @@ static int serial_omap_probe(struct platform_device *pdev) | |||
1723 | if (!up->port.uartclk) { | 1723 | if (!up->port.uartclk) { |
1724 | up->port.uartclk = DEFAULT_CLK_SPEED; | 1724 | up->port.uartclk = DEFAULT_CLK_SPEED; |
1725 | dev_warn(&pdev->dev, | 1725 | dev_warn(&pdev->dev, |
1726 | "No clock speed specified: using default: %d\n" | 1726 | "No clock speed specified: using default: %d\n", |
1727 | DEFAULT_CLK_SPEED); | 1727 | DEFAULT_CLK_SPEED); |
1728 | } | 1728 | } |
1729 | 1729 | ||