Ignore:
Timestamp:
2020-12-14T20:41:53Z (3 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/hid/usbhid/multimedia/keymap.c

    r1382446 rd1582b50  
    5252        [0xb7] = 0,       /* Stop */
    5353        [0xb8] = 0,       /* Eject */
    54         [0xcd] = 0/*KC_F2*/,   /* Play/Pause */
    55         [0xe2] = 0/*KC_F3*/,   /* Mute */
    56         [0xe9] = 0/*KC_F5*/,   /* Volume Increment */
    57         [0xea] = 0/*KC_F4*/,   /* Volume Decrement */
    58         [0x183] = 0/*KC_F1*/,      /* AL Consumer Control Configuration */
     54        [0xcd] = 0,       /* Play/Pause */
     55        [0xe2] = 0,       /* Mute */
     56        [0xe9] = 0,       /* Volume Increment */
     57        [0xea] = 0,       /* Volume Decrement */
     58        [0x183] = 0,      /* AL Consumer Control Configuration */
    5959        [0x18a] = 0,      /* AL Email Reader */
    6060        [0x192] = 0,      /* AL Calculator */
    6161        [0x221] = 0,      /* AC Search */
    62         [0x223] = 0/*KC_F6*/,      /* AC Home */
     62        [0x223] = 0,      /* AC Home */
    6363        [0x224] = 0,      /* AC Back */
    6464        [0x225] = 0,      /* AC Forward */
    6565        [0x226] = 0,      /* AC Stop */
    66         [0x227] = 0,  /* AC Refresh */
    67         [0x22a] = 0   /* AC Bookmarks */
     66        [0x227] = 0,      /* AC Refresh */
     67        [0x22a] = 0       /* AC Bookmarks */
    6868};
    6969
     
    8484                return -1;
    8585
    86         /*! @todo What if the usage is not in the table? */
     86        /* TODO What if the usage is not in the table? */
    8787        key = map[usage];
    8888
Note: See TracChangeset for help on using the changeset viewer.