~vojtech-horky/helenos/helenos-qemu

« back to all changes in this revision

Viewing changes to uspace/srv/hw/irc/i8259/i8259.c

  • Committer: Vojtech Horky
  • Date: 2017-02-13 11:51:33 UTC
  • mfrom: (2103.1.479 HelenOS.clean)
  • Revision ID: vojtechhorky@users.sourceforge.net-20170213115133-j4tgzq0p3xmioj8c
Merge mainline changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
#include <stdbool.h>
46
46
#include <errno.h>
47
47
#include <async.h>
48
 
#include <align.h>
49
 
#include <async.h>
50
48
#include <stdio.h>
51
49
#include <ipc/loc.h>
52
50
 
152
150
                return false;
153
151
        }
154
152
        
155
 
        async_set_client_connection(i8259_connection);
 
153
        async_set_fallback_port_handler(i8259_connection, NULL);
156
154
        service_register(SERVICE_IRC);
157
155
        
158
156
        return true;