Changeset d1582b50 in mainline for uspace/drv/bus/usb/xhci/hc.c


Ignore:
Timestamp:
2020-12-14T20:41:53Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
02fe42e
Parents:
1382446
git-author:
Jiri Svoboda <jiri@…> (2020-12-14 20:33:54)
git-committer:
Jiri Svoboda <jiri@…> (2020-12-14 20:41:53)
Message:

Fix spacing in single-line comments using latest ccheck

This found incorrectly formatted section comments (with blocks of
asterisks or dashes). I strongly believe against using section comments
but I am not simply removing them since that would probably be
controversial.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/hc.c

    r1382446 rd1582b50  
    886886        }
    887887
    888         /* Issue configure endpoint command (sec 4.3.5). */
     888        /* Issue configure endpoint command (sec 4.3.5).  */
    889889        dma_buffer_t ictx_dma_buf;
    890890        if ((err = create_configure_ep_input_ctx(dev, &ictx_dma_buf)))
     
    928928        xhci_cmd_t cmd;
    929929
    930         /* Issue configure endpoint command (sec 4.3.5). */
     930        /* Issue configure endpoint command (sec 4.3.5).  */
    931931        dma_buffer_t ictx_dma_buf;
    932932        errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf);
     
    957957                return EOK;
    958958
    959         /* Issue configure endpoint command (sec 4.3.5) with the DC flag. */
     959        /* Issue configure endpoint command (sec 4.3.5) with the DC flag.  */
    960960        xhci_cmd_init(&cmd, XHCI_CMD_CONFIGURE_ENDPOINT);
    961961        cmd.slot_id = dev->slot_id;
     
    981981        xhci_cmd_t cmd;
    982982
    983         /* Issue configure endpoint command (sec 4.3.5). */
     983        /* Issue configure endpoint command (sec 4.3.5).  */
    984984        dma_buffer_t ictx_dma_buf;
    985985        errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf);
     
    10201020                return EOK;
    10211021
    1022         /* Issue configure endpoint command (sec 4.3.5). */
     1022        /* Issue configure endpoint command (sec 4.3.5).  */
    10231023        dma_buffer_t ictx_dma_buf;
    10241024        errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf);
Note: See TracChangeset for help on using the changeset viewer.