From 3574901c31c5e6149bf170e313d78711f8629406 Mon Sep 17 00:00:00 2001 From: Sven Schnelle Date: Sat, 28 Nov 2015 22:21:37 +0100 Subject: [PATCH] facetimehd: add missing linefeeds in pr_debug Signed-off-by: Sven Schnelle --- fthd_drv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fthd_drv.c b/fthd_drv.c index 510ed33..4a6b7e6 100644 --- a/fthd_drv.c +++ b/fthd_drv.c @@ -80,13 +80,13 @@ static int fthd_pci_reserve_mem(struct fthd_private *dev_priv) dev_priv->isp_io = ioremap_nocache(start, len); dev_priv->isp_io_len = len; - pr_debug("Allocated S2 regs (BAR %d). %u bytes at 0x%p", + pr_debug("Allocated S2 regs (BAR %d). %u bytes at 0x%p\n", FTHD_PCI_S2_IO, dev_priv->s2_io_len, dev_priv->s2_io); - pr_debug("Allocated S2 mem (BAR %d). %u bytes at 0x%p", + pr_debug("Allocated S2 mem (BAR %d). %u bytes at 0x%p\n", FTHD_PCI_S2_MEM, dev_priv->s2_mem_len, dev_priv->s2_mem); - pr_debug("Allocated ISP regs (BAR %d). %u bytes at 0x%p", + pr_debug("Allocated ISP regs (BAR %d). %u bytes at 0x%p\n", FTHD_PCI_ISP_IO, dev_priv->isp_io_len, dev_priv->isp_io); return 0;