Changeset 75fe97b in mainline for uspace/lib/c/generic/irc.c


Ignore:
Timestamp:
2014-09-03T10:52:10Z (10 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
95b2276
Parents:
b3222a3
Message:

IntegratorCP mouse support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/irc.c

    rb3222a3 r75fe97b  
    4949static int irc_init(void)
    5050{
    51         sysarg_t apic;
    52         sysarg_t i8259;
    53 
    5451        assert(irc_sess == NULL);
    5552
    56         if (((sysinfo_get_value("apic", &apic) == EOK) && (apic))
    57             || ((sysinfo_get_value("i8259", &i8259) == EOK) && (i8259))) {
    58                 irc_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
    59                     SERVICE_IRC, 0, 0);
    60         }
     53        irc_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
     54            SERVICE_IRC, 0, 0);
    6155
    6256        if (irc_sess == NULL)
Note: See TracChangeset for help on using the changeset viewer.