staging: dwc2: add missing newlines to debug messages
authorPaul Zimmerman <Paul.Zimmerman@synopsys.com>
Mon, 22 Apr 2013 21:00:17 +0000 (14:00 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Apr 2013 17:37:55 +0000 (10:37 -0700)
A few debug messages were missing newlines, add them

Signed-off-by: Paul Zimmerman <paulz@synopsys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dwc2/core_intr.c
drivers/staging/dwc2/hcd.c
drivers/staging/dwc2/hcd_ddma.c
drivers/staging/dwc2/hcd_intr.c

index 44c016670a166cda019f73d20bf2b8feb0554146..4c9ad14e90ecdc42af8c611869ba5b14ac576192 100644 (file)
@@ -453,7 +453,7 @@ irqreturn_t dwc2_handle_common_intr(int irq, void *dev)
        int retval = 0;
 
        if (dwc2_check_core_status(hsotg) < 0) {
-               dev_warn(hsotg->dev, "Controller is disconnected");
+               dev_warn(hsotg->dev, "Controller is disconnected\n");
                goto out;
        }
 
index 7a144c10b81addc0d7b6d1b3c9dd144caa7957e6..65b73482da4269174add977b2475f02bf920fb70 100644 (file)
@@ -1311,7 +1311,7 @@ static void dwc2_conn_id_status_change(struct work_struct *work)
                }
                if (count > 250)
                        dev_err(hsotg->dev,
-                               "Connection id status change timed out");
+                               "Connection id status change timed out\n");
                hsotg->op_state = OTG_STATE_B_PERIPHERAL;
                dwc2_core_init(hsotg, false, -1);
                dwc2_enable_global_interrupts(hsotg);
@@ -1328,7 +1328,7 @@ static void dwc2_conn_id_status_change(struct work_struct *work)
                }
                if (count > 250)
                        dev_err(hsotg->dev,
-                               "Connection id status change timed out");
+                               "Connection id status change timed out\n");
                hsotg->op_state = OTG_STATE_A_HOST;
 
                /* Initialize the Core for Host mode */
index d2180b275f7aa00863180533c1b4c5ecc6435b5a..5c0fd273a7bfd62be252f5a6a33430a411a6e413 100644 (file)
@@ -218,17 +218,17 @@ static void dwc2_update_frame_list(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
        u16 i, j, inc;
 
        if (!hsotg) {
-               pr_err("hsotg = %p", hsotg);
+               pr_err("hsotg = %p\n", hsotg);
                return;
        }
 
        if (!qh->channel) {
-               dev_err(hsotg->dev, "qh->channel = %p", qh->channel);
+               dev_err(hsotg->dev, "qh->channel = %p\n", qh->channel);
                return;
        }
 
        if (!hsotg->frame_list) {
-               dev_err(hsotg->dev, "hsotg->frame_list = %p",
+               dev_err(hsotg->dev, "hsotg->frame_list = %p\n",
                        hsotg->frame_list);
                return;
        }
index caa31bafdb5326c65ecbf961e79dea9d92a60c93..a8d8c53a8b2389cea050e9c582a47052bae58f75 100644 (file)
@@ -2069,7 +2069,7 @@ int dwc2_hcd_intr(struct dwc2_hsotg *hsotg)
        int retval = 0;
 
        if (dwc2_check_core_status(hsotg) < 0) {
-               dev_warn(hsotg->dev, "Controller is disconnected");
+               dev_warn(hsotg->dev, "Controller is disconnected\n");
                return 0;
        }