Changeset 1433ecda in mainline for uspace/drv/char/ski-con/ski-con.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/ski-con/ski-con.c

    r47b2d7e3 r1433ecda  
    169169#ifdef UARCH_ia64
    170170        asm volatile (
    171                 "mov r15 = %1\n"
    172                 "break 0x80000;;\n"     /* modifies r8 */
    173                 "mov %0 = r8;;\n"
    174 
    175                 : "=r" (ch)
    176                 : "i" (SKI_GETCHAR)
    177                 : "r15", "r8"
     171            "mov r15 = %1\n"
     172            "break 0x80000;;\n" /* modifies r8 */
     173            "mov %0 = r8;;\n"
     174
     175            : "=r" (ch)
     176            : "i" (SKI_GETCHAR)
     177            : "r15", "r8"
    178178        );
    179179#else
     
    199199#ifdef UARCH_ia64
    200200        asm volatile (
    201                 "mov r15 = %0\n"
    202                 "mov r32 = %1\n"   /* r32 is in0 */
    203                 "break 0x80000\n"  /* modifies r8 */
    204                 :
    205                 : "i" (SKI_PUTCHAR), "r" (ch)
    206                 : "r15", "in0", "r8"
     201            "mov r15 = %0\n"
     202            "mov r32 = %1\n"   /* r32 is in0 */
     203            "break 0x80000\n"  /* modifies r8 */
     204            :
     205            : "i" (SKI_PUTCHAR), "r" (ch)
     206            : "r15", "in0", "r8"
    207207        );
    208208#else
Note: See TracChangeset for help on using the changeset viewer.