Changeset 00bb6965 in mainline for uspace/fb/ega.c


Ignore:
Timestamp:
2006-12-11T23:17:58Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
df496c5
Parents:
dff0a94
Message:

Coding style fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/fb/ega.c

    rdff0a94 r00bb6965  
    8383        int i;
    8484       
    85         for (i=0; i < scr_width*scr_height; i++) {
    86                 scr_addr[i*2] = ' ';
    87                 scr_addr[i*2+1] = style;
     85        for (i = 0; i < scr_width*scr_height; i++) {
     86                scr_addr[i * 2] = ' ';
     87                scr_addr[i * 2 + 1] = style;
    8888        }
    8989}
     
    9393        int ega_cursor;
    9494
    95         ega_cursor=col+scr_width*row;
     95        ega_cursor = col + scr_width * row;
    9696       
    97         outb(EGA_IO_ADDRESS    , 0xe);
    98         outb(EGA_IO_ADDRESS + 1, (ega_cursor >>8) & 0xff);
    99         outb(EGA_IO_ADDRESS    , 0xf);
     97        outb(EGA_IO_ADDRESS, 0xe);
     98        outb(EGA_IO_ADDRESS + 1, (ega_cursor >> 8) & 0xff);
     99        outb(EGA_IO_ADDRESS, 0xf);
    100100        outb(EGA_IO_ADDRESS + 1, ega_cursor & 0xff);
    101101}
     
    105105        uint8_t stat;
    106106
    107         outb(EGA_IO_ADDRESS , 0xa);
     107        outb(EGA_IO_ADDRESS, 0xa);
    108108        stat=inb(EGA_IO_ADDRESS + 1);
    109         outb(EGA_IO_ADDRESS , 0xa);
    110         outb(EGA_IO_ADDRESS +1 ,stat | (1<<5) );
     109        outb(EGA_IO_ADDRESS, 0xa);
     110        outb(EGA_IO_ADDRESS + 1, stat | (1 << 5));
    111111}
    112112
     
    115115        uint8_t stat;
    116116
    117         outb(EGA_IO_ADDRESS , 0xa);
     117        outb(EGA_IO_ADDRESS, 0xa);
    118118        stat=inb(EGA_IO_ADDRESS + 1);
    119         outb(EGA_IO_ADDRESS , 0xa);
    120         outb(EGA_IO_ADDRESS +1 ,stat & (~(1<<5)) );
     119        outb(EGA_IO_ADDRESS, 0xa);
     120        outb(EGA_IO_ADDRESS + 1, stat & (~(1 << 5)));
    121121}
    122122
     
    125125        int i;
    126126        if (rows > 0) {
    127                 memcpy (scr_addr,((char *)scr_addr) + rows * scr_width * 2,
     127                memcpy(scr_addr, ((char *) scr_addr) + rows * scr_width * 2,
    128128                        scr_width * scr_height * 2 - rows * scr_width * 2);
    129                 for (i = 0; i < rows * scr_width ; i ++)
    130                         (((short *)scr_addr) + scr_width * scr_height - rows *
    131                                 scr_width) [i] = ((style << 8) + ' ');
     129                for (i = 0; i < rows * scr_width; i++)
     130                        (((short *) scr_addr) + scr_width * scr_height - rows *
     131                                scr_width)[i] = ((style << 8) + ' ');
    132132        } else if (rows < 0) {
    133                 memcpy (((char *)scr_addr) - rows * scr_width * 2, scr_addr,
     133                memcpy(((char *)scr_addr) - rows * scr_width * 2, scr_addr,
    134134                        scr_width * scr_height * 2 + rows * scr_width * 2);
    135                 for (i = 0; i < - rows * scr_width ; i++)
    136                         ((short *)scr_addr) [i] = ((style << 8 ) + ' ');
     135                for (i = 0; i < -rows * scr_width; i++)
     136                        ((short *)scr_addr)[i] = ((style << 8 ) + ' ');
    137137        }
    138138}
     
    140140static void printchar(char c, unsigned int row, unsigned int col)
    141141{
    142         scr_addr[(row*scr_width + col)*2] = c;
    143         scr_addr[(row*scr_width + col)*2+1] = style;
     142        scr_addr[(row * scr_width + col) * 2] = c;
     143        scr_addr[(row * scr_width + col) * 2 + 1] = style;
    144144       
    145         cursor_goto(row,col+1);
     145        cursor_goto(row, col + 1);
    146146}
    147147
     
    150150        int i;
    151151
    152         for (i=0; i < scr_width*scr_height; i++) {
    153                 scr_addr[i*2] = data[i].character;
    154                 scr_addr[i*2+1] = EGA_STYLE(data[i].style.fg_color, data[i].style.bg_color);
     152        for (i = 0; i < scr_width * scr_height; i++) {
     153                scr_addr[i * 2] = data[i].character;
     154                scr_addr[i * 2 + 1] = EGA_STYLE(data[i].style.fg_color,
     155                        data[i].style.bg_color);
    155156        }
    156157}
     
    160161        int i;
    161162
    162         for (i=0; ( i < MAX_SAVED_SCREENS ) && (saved_screens[i].data); i++)
     163        for (i=0; (i < MAX_SAVED_SCREENS) && (saved_screens[i].data); i++)
    163164                ;
    164165        if (i == MAX_SAVED_SCREENS)
    165166                return EINVAL;
    166         if (!(saved_screens[i].data=malloc( 2 * scr_width*scr_height )))
     167        if (!(saved_screens[i].data = malloc(2 * scr_width * scr_height)))
    167168                return ENOMEM;
    168169        memcpy(saved_screens[i].data, scr_addr, 2 * scr_width * scr_height);
     
    174175{
    175176        if (saved_screens[i].data)
    176                 memcpy(scr_addr, saved_screens[i].data, 2 * scr_width * scr_height);
    177         else return EINVAL;
     177                memcpy(scr_addr, saved_screens[i].data, 2 * scr_width *
     178                        scr_height);
     179        else
     180                return EINVAL;
    178181        return i;
    179182}
     
    204207                case IPC_M_PHONE_HUNGUP:
    205208                        client_connected = 0;
    206                         ipc_answer_fast(callid,0,0,0);
     209                        ipc_answer_fast(callid, 0, 0, 0);
    207210                        return; /* Exit thread */
    208211                case IPC_M_AS_AREA_SEND:
    209212                        /* We accept one area for data interchange */
    210213                        intersize = IPC_GET_ARG2(call);
    211                         if (intersize >= scr_width*scr_height*sizeof(*interbuf)) {
    212                                 receive_comm_area(callid,&call,(void *)&interbuf);
     214                        if (intersize >= scr_width * scr_height *
     215                                sizeof(*interbuf)) {
     216                                receive_comm_area(callid, &call, (void *)
     217                                        &interbuf);
    213218                                continue;
    214219                        }
     
    238243                                break;
    239244                        }
    240                         printchar(c,row,col);
     245                        printchar(c, row, col);
    241246                        retval = 0;
    242247                        break;
     
    248253                                break;
    249254                        }
    250                         cursor_goto(row,col);
     255                        cursor_goto(row, col);
    251256                        retval = 0;
    252257                        break;
    253258                case FB_SCROLL:
    254259                        i = IPC_GET_ARG1(call);
    255                         if (i > scr_height || i < (- (int)scr_height)) {
     260                        if (i > scr_height || i < -((int) scr_height)) {
    256261                                retval = EINVAL;
    257262                                break;
     
    296301                        retval = ENOENT;
    297302                }
    298                 ipc_answer_fast(callid,retval,0,0);
     303                ipc_answer_fast(callid, retval, 0, 0);
    299304        }
    300305}
     
    305310        size_t sz;
    306311
    307 
    308         ega_ph_addr=(void *)sysinfo_value("fb.address.physical");
    309         scr_width=sysinfo_value("fb.width");
    310         scr_height=sysinfo_value("fb.height");
     312        ega_ph_addr = (void *) sysinfo_value("fb.address.physical");
     313        scr_width = sysinfo_value("fb.width");
     314        scr_height = sysinfo_value("fb.height");
    311315        iospace_enable(task_get_id(), (void *) EGA_IO_ADDRESS, 2);
    312316
Note: See TracChangeset for help on using the changeset viewer.