Changeset b688fd8 in mainline for uspace/srv/hw
- Timestamp:
- 2015-08-17T18:54:56Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- abf2dfd
- Parents:
- b10460a
- Location:
- uspace/srv/hw
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/bus/cuda_adb/cuda_adb.c
rb10460a rb688fd8 169 169 } 170 170 171 async_set_ client_connection(cuda_connection);171 async_set_fallback_port_handler(cuda_connection, NULL); 172 172 rc = loc_server_register(NAME); 173 173 if (rc < 0) { -
uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c
rb10460a rb688fd8 77 77 printf("%s: S3C24xx on-chip UART driver\n", NAME); 78 78 79 async_set_ client_connection(s3c24xx_uart_connection);79 async_set_fallback_port_handler(s3c24xx_uart_connection, NULL); 80 80 int rc = loc_server_register(NAME); 81 81 if (rc != EOK) { -
uspace/srv/hw/irc/apic/apic.c
rb10460a rb688fd8 215 215 } 216 216 217 async_set_ client_connection(apic_connection);217 async_set_fallback_port_handler(apic_connection, NULL); 218 218 service_register(SERVICE_IRC); 219 219 -
uspace/srv/hw/irc/i8259/i8259.c
rb10460a rb688fd8 153 153 } 154 154 155 async_set_ client_connection(i8259_connection);155 async_set_fallback_port_handler(i8259_connection, NULL); 156 156 service_register(SERVICE_IRC); 157 157 -
uspace/srv/hw/irc/icp-ic/icp-ic.c
rb10460a rb688fd8 150 150 icpic_regs = (icpic_regs_t *)regs; 151 151 152 async_set_ client_connection(icpic_connection);152 async_set_fallback_port_handler(icpic_connection, NULL); 153 153 service_register(SERVICE_IRC); 154 154 -
uspace/srv/hw/irc/obio/obio.c
rb10460a rb688fd8 137 137 printf("%s: OBIO registers with base at %zu\n", NAME, base_phys); 138 138 139 async_set_ client_connection(obio_connection);139 async_set_fallback_port_handler(obio_connection, NULL); 140 140 service_register(SERVICE_IRC); 141 141
Note:
See TracChangeset
for help on using the changeset viewer.