OSDN Git Service

usb: cdns3: change dev_info to dev_dbg for debug message
authorPeter Chen <peter.chen@nxp.com>
Tue, 31 Mar 2020 08:10:05 +0000 (16:10 +0800)
committerFelipe Balbi <balbi@kernel.org>
Mon, 25 May 2020 08:09:37 +0000 (11:09 +0300)
During device mode initialization, lots of device information
are printed to console, see below. Change them as debug message.

cdns-usb3 5b130000.cdns3: Initialized  ep0 support:
cdns-usb3 5b130000.cdns3: Initialized  ep1out support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep2out support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep3out support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep4out support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep5out support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep6out support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep7out support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep1in support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep2in support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep3in support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep4in support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep5in support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep6in support: BULK, INT ISO
cdns-usb3 5b130000.cdns3: Initialized  ep7in support: BULK, INT ISO

Reviewed-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Peter Chen <peter.chen@nxp.com>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
drivers/usb/cdns3/drd.c
drivers/usb/cdns3/gadget.c

index 16ad485..5808984 100644 (file)
@@ -329,7 +329,7 @@ int cdns3_drd_init(struct cdns3 *cdns)
                cdns->otg_v1_regs = NULL;
                cdns->otg_regs = regs;
                writel(1, &cdns->otg_v0_regs->simulate);
-               dev_info(cdns->dev, "DRD version v0 (%08x)\n",
+               dev_dbg(cdns->dev, "DRD version v0 (%08x)\n",
                         readl(&cdns->otg_v0_regs->version));
        } else {
                cdns->otg_v0_regs = NULL;
@@ -337,7 +337,7 @@ int cdns3_drd_init(struct cdns3 *cdns)
                cdns->otg_regs = (void *)&cdns->otg_v1_regs->cmd;
                cdns->version  = CDNS3_CONTROLLER_V1;
                writel(1, &cdns->otg_v1_regs->simulate);
-               dev_info(cdns->dev, "DRD version v1 (ID: %08x, rev: %08x)\n",
+               dev_dbg(cdns->dev, "DRD version v1 (ID: %08x, rev: %08x)\n",
                         readl(&cdns->otg_v1_regs->did),
                         readl(&cdns->otg_v1_regs->rid));
        }
index 54a0461..4f37bde 100644 (file)
@@ -2965,7 +2965,7 @@ static int cdns3_init_eps(struct cdns3_device *priv_dev)
 
                priv_ep->flags = 0;
 
-               dev_info(priv_dev->dev, "Initialized  %s support: %s %s\n",
+               dev_dbg(priv_dev->dev, "Initialized  %s support: %s %s\n",
                         priv_ep->name,
                         priv_ep->endpoint.caps.type_bulk ? "BULK, INT" : "",
                         priv_ep->endpoint.caps.type_iso ? "ISO" : "");