mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
Replace all occurrences of vdbg with vinfo
This commit is contained in:
@@ -358,7 +358,7 @@ static int cdcacm_sndpacket(FAR struct cdcacm_dev_s *priv)
|
||||
* to be sent).
|
||||
*/
|
||||
|
||||
uvdbg("head=%d tail=%d nwrq=%d empty=%d\n",
|
||||
uinfo("head=%d tail=%d nwrq=%d empty=%d\n",
|
||||
priv->serdev.xmit.head, priv->serdev.xmit.tail,
|
||||
priv->nwrq, sq_empty(&priv->reqlist));
|
||||
|
||||
@@ -427,7 +427,7 @@ static inline int cdcacm_recvpacket(FAR struct cdcacm_dev_s *priv,
|
||||
uint16_t nexthead;
|
||||
uint16_t nbytes = 0;
|
||||
|
||||
uvdbg("head=%d tail=%d nrdq=%d reqlen=%d\n",
|
||||
uinfo("head=%d tail=%d nrdq=%d reqlen=%d\n",
|
||||
priv->serdev.recv.head, priv->serdev.recv.tail, priv->nrdq, reqlen);
|
||||
|
||||
/* Get the next head index. During the time that RX interrupts are disabled, the
|
||||
@@ -1276,7 +1276,7 @@ static int cdcacm_setup(FAR struct usbdevclass_driver_s *driver,
|
||||
index = GETUINT16(ctrl->index);
|
||||
len = GETUINT16(ctrl->len);
|
||||
|
||||
uvdbg("type=%02x req=%02x value=%04x index=%04x len=%04x\n",
|
||||
uinfo("type=%02x req=%02x value=%04x index=%04x len=%04x\n",
|
||||
ctrl->type, ctrl->req, value, index, len);
|
||||
|
||||
if ((ctrl->type & USB_REQ_TYPE_MASK) == USB_REQ_TYPE_STANDARD)
|
||||
@@ -2208,7 +2208,7 @@ static void cdcuart_txint(FAR struct uart_dev_s *dev, bool enable)
|
||||
* send the next packet now.
|
||||
*/
|
||||
|
||||
uvdbg("enable=%d head=%d tail=%d\n",
|
||||
uinfo("enable=%d head=%d tail=%d\n",
|
||||
enable, priv->serdev.xmit.head, priv->serdev.xmit.tail);
|
||||
|
||||
if (enable && priv->serdev.xmit.head != priv->serdev.xmit.tail)
|
||||
|
||||
@@ -431,7 +431,7 @@ static int composite_setup(FAR struct usbdevclass_driver_s *driver,
|
||||
index = GETUINT16(ctrl->index);
|
||||
len = GETUINT16(ctrl->len);
|
||||
|
||||
uvdbg("type=%02x req=%02x value=%04x index=%04x len=%04x\n",
|
||||
uinfo("type=%02x req=%02x value=%04x index=%04x len=%04x\n",
|
||||
ctrl->type, ctrl->req, value, index, len);
|
||||
UNUSED(index);
|
||||
|
||||
|
||||
@@ -617,7 +617,7 @@ static int usbclass_sndpacket(FAR struct pl2303_dev_s *priv)
|
||||
* to be sent).
|
||||
*/
|
||||
|
||||
uvdbg("head=%d tail=%d nwrq=%d empty=%d\n",
|
||||
uinfo("head=%d tail=%d nwrq=%d empty=%d\n",
|
||||
priv->serdev.xmit.head, priv->serdev.xmit.tail,
|
||||
priv->nwrq, sq_empty(&priv->reqlist));
|
||||
|
||||
@@ -1644,7 +1644,7 @@ static int usbclass_setup(FAR struct usbdevclass_driver_s *driver,
|
||||
index = GETUINT16(ctrl->index);
|
||||
len = GETUINT16(ctrl->len);
|
||||
|
||||
uvdbg("type=%02x req=%02x value=%04x index=%04x len=%04x\n",
|
||||
uinfo("type=%02x req=%02x value=%04x index=%04x len=%04x\n",
|
||||
ctrl->type, ctrl->req, value, index, len);
|
||||
|
||||
switch (ctrl->type & USB_REQ_TYPE_MASK)
|
||||
@@ -2227,7 +2227,7 @@ static void usbser_txint(FAR struct uart_dev_s *dev, bool enable)
|
||||
* send the next packet now.
|
||||
*/
|
||||
|
||||
uvdbg("enable=%d head=%d tail=%d\n",
|
||||
uinfo("enable=%d head=%d tail=%d\n",
|
||||
enable, priv->serdev.xmit.head, priv->serdev.xmit.tail);
|
||||
|
||||
if (enable && priv->serdev.xmit.head != priv->serdev.xmit.tail)
|
||||
|
||||
@@ -549,7 +549,7 @@ static int usbmsc_setup(FAR struct usbdevclass_driver_s *driver,
|
||||
index = GETUINT16(ctrl->index);
|
||||
len = GETUINT16(ctrl->len);
|
||||
|
||||
uvdbg("type=%02x req=%02x value=%04x index=%04x len=%04x\n",
|
||||
uinfo("type=%02x req=%02x value=%04x index=%04x len=%04x\n",
|
||||
ctrl->type, ctrl->req, value, index, len);
|
||||
|
||||
if ((ctrl->type & USB_REQ_TYPE_MASK) == USB_REQ_TYPE_STANDARD)
|
||||
@@ -1652,7 +1652,7 @@ int usbmsc_exportluns(FAR void *handle)
|
||||
|
||||
g_usbmsc_handoff = priv;
|
||||
|
||||
uvdbg("Starting SCSI worker thread\n");
|
||||
uinfo("Starting SCSI worker thread\n");
|
||||
priv->thpid = kernel_thread("scsid", CONFIG_USBMSC_SCSI_PRIO,
|
||||
CONFIG_USBMSC_SCSI_STACKSIZE,
|
||||
usbmsc_scsi_main, NULL);
|
||||
@@ -1664,7 +1664,7 @@ int usbmsc_exportluns(FAR void *handle)
|
||||
|
||||
/* Wait for the worker thread to run and initialize */
|
||||
|
||||
uvdbg("Waiting for the SCSI worker thread\n");
|
||||
uinfo("Waiting for the SCSI worker thread\n");
|
||||
usbmsc_sync_wait(priv);
|
||||
DEBUGASSERT(g_usbmsc_handoff == NULL);
|
||||
|
||||
@@ -1681,7 +1681,7 @@ int usbmsc_exportluns(FAR void *handle)
|
||||
|
||||
/* Signal to start the thread */
|
||||
|
||||
uvdbg("Signalling for the SCSI worker thread\n");
|
||||
uinfo("Signalling for the SCSI worker thread\n");
|
||||
flags = enter_critical_section();
|
||||
priv->theventset |= USBMSC_EVENT_READY;
|
||||
usbmsc_scsi_signal(priv);
|
||||
|
||||
@@ -2622,7 +2622,7 @@ int usbmsc_scsi_main(int argc, char *argv[])
|
||||
uint16_t eventset;
|
||||
int ret;
|
||||
|
||||
uvdbg("Started\n");
|
||||
uinfo("Started\n");
|
||||
|
||||
/* Get the SCSI state data handed off from the initialization logic */
|
||||
|
||||
@@ -2636,7 +2636,7 @@ int usbmsc_scsi_main(int argc, char *argv[])
|
||||
* wait here until we are told to begin. Start in the NOTINITIALIZED state
|
||||
*/
|
||||
|
||||
uvdbg("Waiting to be signalled\n");
|
||||
uinfo("Waiting to be signalled\n");
|
||||
usbmsc_scsi_lock(priv);
|
||||
priv->thstate = USBMSC_STATE_STARTED;
|
||||
while ((priv->theventset & USBMSC_EVENT_READY) != 0 &&
|
||||
@@ -2645,7 +2645,7 @@ int usbmsc_scsi_main(int argc, char *argv[])
|
||||
usbmsc_scsi_wait(priv);
|
||||
}
|
||||
|
||||
uvdbg("Running\n");
|
||||
uinfo("Running\n");
|
||||
|
||||
/* Transition to the INITIALIZED/IDLE state */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user