Ignore:
File:
1 edited

Legend:

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

    re5424e9 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.