Changeset 007e6efa in mainline for uspace/srv/hw
- Timestamp:
- 2011-01-28T15:44:39Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4db1fbf
- Parents:
- ae0300b5
- Location:
- uspace/srv/hw
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/irc/apic/apic.c
rae0300b5 r007e6efa 108 108 109 109 async_set_client_connection(apic_connection); 110 ipc_connect_to_me(PHONE_NS, SERVICE_APIC, 0, 0, NULL, NULL);110 service_register(SERVICE_APIC); 111 111 112 112 return true; -
uspace/srv/hw/irc/fhc/fhc.c
rae0300b5 r007e6efa 137 137 138 138 async_set_client_connection(fhc_connection); 139 ipc_connect_to_me(PHONE_NS, SERVICE_FHC, 0, 0, NULL, NULL);139 service_register(SERVICE_FHC); 140 140 141 141 return true; -
uspace/srv/hw/irc/i8259/i8259.c
rae0300b5 r007e6efa 150 150 151 151 async_set_client_connection(i8259_connection); 152 ipc_connect_to_me(PHONE_NS, SERVICE_I8259, 0, 0, NULL, NULL);152 service_register(SERVICE_I8259); 153 153 154 154 return true; -
uspace/srv/hw/irc/obio/obio.c
rae0300b5 r007e6efa 138 138 139 139 async_set_client_connection(obio_connection); 140 ipc_connect_to_me(PHONE_NS, SERVICE_OBIO, 0, 0, NULL, NULL);140 service_register(SERVICE_OBIO); 141 141 142 142 return true; -
uspace/srv/hw/netif/ne2000/ne2000.c
rae0300b5 r007e6efa 45 45 #include <ipc/ipc.h> 46 46 #include <ipc/services.h> 47 #include <ipc/ns.h> 47 48 #include <ipc/irc.h> 48 49 #include <net/modules.h> … … 389 390 390 391 if (irc_service) { 391 while (irc_phone < 0) { 392 irc_phone = ipc_connect_me_to_blocking(PHONE_NS, irc_service, 393 0, 0); 394 } 392 while (irc_phone < 0) 393 irc_phone = service_connect_blocking(irc_service, 0, 0); 395 394 } 396 395
Note:
See TracChangeset
for help on using the changeset viewer.