Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/output/output.c

    r38d150e r8d2dd7f2  
    2727 */
    2828
     29#include <stddef.h>
    2930#include <errno.h>
    30 #include <stddef.h>
    31 #include <stdlib.h>
     31#include <malloc.h>
    3232#include <macros.h>
    3333#include <as.h>
     
    3636#include <config.h>
    3737#include "port/ega.h"
     38#include "port/kchar.h"
     39#include "port/niagara.h"
     40#include "port/ski.h"
    3841#include "port/chardev.h"
    3942#include "output.h"
     
    219222                dev->ops.cursor_update(dev, prev_col, prev_row, col, row,
    220223                    visible);
    221                 dev->ops.flush(dev);
    222 
    223224        }
    224225       
     
    344345                        }
    345346                }
    346                
    347                 dev->ops.flush(dev);
    348         }
    349        
     347        }
    350348       
    351349        async_answer_0(iid, EOK);
     
    385383                        }
    386384                }
    387                 dev->ops.flush(dev);
    388 
    389         }
     385        }
     386       
    390387        async_answer_0(iid, EOK);
    391388}
     
    482479        if (!config_key_exists("console")) {
    483480                ega_init();
    484         }
    485        
    486         chardev_init();
     481                kchar_init();
     482                niagara_init();
     483                ski_init();
     484        } else {
     485                chardev_init();
     486        }
    487487       
    488488        printf("%s: Accepting connections\n", NAME);
Note: See TracChangeset for help on using the changeset viewer.