w1: omap-hdq: cleanup to add missing newline for some dev_dbg
Otherwise it will corrupt the console log during debugging.
Fixes: 7b5362a603
("w1: omap_hdq: Fix some error/debug handling.")
Cc: stable@vger.kernel.org
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Link: https://lore.kernel.org/r/cd0d55749a091214106575f6e1d363c6db56622f.1590255176.git.hns@goldelico.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3234ac664a
commit
5e02f3b317
|
@ -155,7 +155,7 @@ static int hdq_write_byte(struct hdq_data *hdq_data, u8 val, u8 *status)
|
|||
/* check irqstatus */
|
||||
if (!(*status & OMAP_HDQ_INT_STATUS_TXCOMPLETE)) {
|
||||
dev_dbg(hdq_data->dev, "timeout waiting for"
|
||||
" TXCOMPLETE/RXCOMPLETE, %x", *status);
|
||||
" TXCOMPLETE/RXCOMPLETE, %x\n", *status);
|
||||
ret = -ETIMEDOUT;
|
||||
goto out;
|
||||
}
|
||||
|
@ -166,7 +166,7 @@ static int hdq_write_byte(struct hdq_data *hdq_data, u8 val, u8 *status)
|
|||
OMAP_HDQ_FLAG_CLEAR, &tmp_status);
|
||||
if (ret) {
|
||||
dev_dbg(hdq_data->dev, "timeout waiting GO bit"
|
||||
" return to zero, %x", tmp_status);
|
||||
" return to zero, %x\n", tmp_status);
|
||||
}
|
||||
|
||||
out:
|
||||
|
@ -183,7 +183,7 @@ static irqreturn_t hdq_isr(int irq, void *_hdq)
|
|||
spin_lock_irqsave(&hdq_data->hdq_spinlock, irqflags);
|
||||
hdq_data->hdq_irqstatus = hdq_reg_in(hdq_data, OMAP_HDQ_INT_STATUS);
|
||||
spin_unlock_irqrestore(&hdq_data->hdq_spinlock, irqflags);
|
||||
dev_dbg(hdq_data->dev, "hdq_isr: %x", hdq_data->hdq_irqstatus);
|
||||
dev_dbg(hdq_data->dev, "hdq_isr: %x\n", hdq_data->hdq_irqstatus);
|
||||
|
||||
if (hdq_data->hdq_irqstatus &
|
||||
(OMAP_HDQ_INT_STATUS_TXCOMPLETE | OMAP_HDQ_INT_STATUS_RXCOMPLETE
|
||||
|
@ -248,7 +248,7 @@ static int omap_hdq_break(struct hdq_data *hdq_data)
|
|||
tmp_status = hdq_data->hdq_irqstatus;
|
||||
/* check irqstatus */
|
||||
if (!(tmp_status & OMAP_HDQ_INT_STATUS_TIMEOUT)) {
|
||||
dev_dbg(hdq_data->dev, "timeout waiting for TIMEOUT, %x",
|
||||
dev_dbg(hdq_data->dev, "timeout waiting for TIMEOUT, %x\n",
|
||||
tmp_status);
|
||||
ret = -ETIMEDOUT;
|
||||
goto out;
|
||||
|
@ -275,7 +275,7 @@ static int omap_hdq_break(struct hdq_data *hdq_data)
|
|||
&tmp_status);
|
||||
if (ret)
|
||||
dev_dbg(hdq_data->dev, "timeout waiting INIT&GO bits"
|
||||
" return to zero, %x", tmp_status);
|
||||
" return to zero, %x\n", tmp_status);
|
||||
|
||||
out:
|
||||
hdq_reset_irqstatus(hdq_data);
|
||||
|
|
Loading…
Reference in New Issue