Changeset d1582b50 in mainline for uspace/drv/bus/usb/ohci/ohci_regs.h


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/ohci/ohci_regs.h

    r1382446 rd1582b50  
    261261/** Number of downstream ports, max 15 */
    262262#define RHDA_NDS_MASK  (0xff)
    263 /** Power switching mode: 0-global, 1-per port*/
     263/** Power switching mode: 0-global, 1-per port */
    264264#define RHDA_PSM_FLAG  (1 << 8)
    265 /** No power switch: 1-power on, 0-use PSM*/
     265/** No power switch: 1-power on, 0-use PSM */
    266266#define RHDA_NPS_FLAG  (1 << 9)
    267267/** 1-Compound device, must be 0 */
     
    317317#define RHS_LPSC_FLAG (1 << 16)
    318318#define RHS_SET_GLOBAL_POWER RHS_LPSC_FLAG /* synonym for the above */
    319 /** Over-current change indicator*/
     319/** Over-current change indicator */
    320320#define RHS_OCIC_FLAG (1 << 17)
    321321#define RHS_CLEAR_DRWE (1 << 31)
     
    327327 */
    328328
    329 /** r: current connect status, w: 1-clear port enable, 0-N/S*/
     329/** r: current connect status, w: 1-clear port enable, 0-N/S */
    330330#define RHPS_CCS_FLAG (1 << 0)
    331331#define RHPS_CLEAR_PORT_ENABLE RHPS_CCS_FLAG
Note: See TracChangeset for help on using the changeset viewer.