Changeset 80cd7cd in mainline for uspace/srv/hw
- Timestamp:
- 2011-01-13T20:58:24Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 87e373b
- Parents:
- eaef141 (diff), a613fea1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/srv/hw
- Files:
-
- 7 added
- 5 deleted
- 3 edited
- 9 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/bus/cuda_adb/cuda_adb.c
reaef141 r80cd7cd 162 162 rc = devmap_device_register("adb/kbd", &devmap_handle); 163 163 if (rc != EOK) { 164 devmap_hangup_phone(DEVMAP_DRIVER);165 164 printf(NAME ": Unable to register device %s.\n", "adb/kdb"); 166 165 return rc; … … 172 171 rc = devmap_device_register("adb/mouse", &devmap_handle); 173 172 if (rc != EOK) { 174 devmap_hangup_phone(DEVMAP_DRIVER);175 173 printf(NAME ": Unable to register device %s.\n", "adb/mouse"); 176 174 return rc; -
uspace/srv/hw/char/i8042/i8042.c
reaef141 r80cd7cd 148 148 rc = devmap_device_register(name, &i8042_port[i].devmap_handle); 149 149 if (rc != EOK) { 150 devmap_hangup_phone(DEVMAP_DRIVER);151 150 printf(NAME ": Unable to register device %s.\n", name); 152 151 return rc; -
uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c
reaef141 r80cd7cd 95 95 rc = devmap_device_register(NAMESPACE "/" NAME, &uart->devmap_handle); 96 96 if (rc != EOK) { 97 devmap_hangup_phone(DEVMAP_DRIVER);98 97 printf(NAME ": Unable to register device %s.\n", 99 98 NAMESPACE "/" NAME); -
uspace/srv/hw/irc/fhc/fhc.c
reaef141 r80cd7cd 38 38 #include <ipc/ipc.h> 39 39 #include <ipc/services.h> 40 #include <ipc/ bus.h>40 #include <ipc/irc.h> 41 41 #include <ipc/ns.h> 42 42 #include <sysinfo.h> … … 83 83 callid = async_get_call(&call); 84 84 switch (IPC_GET_IMETHOD(call)) { 85 case BUS_CLEAR_INTERRUPT: 85 case IRC_ENABLE_INTERRUPT: 86 /* Noop */ 87 ipc_answer_0(callid, EOK); 88 break; 89 case IRC_CLEAR_INTERRUPT: 86 90 inr = IPC_GET_ARG1(call); 87 91 switch (inr) { -
uspace/srv/hw/irc/obio/obio.c
reaef141 r80cd7cd 44 44 #include <ipc/ipc.h> 45 45 #include <ipc/services.h> 46 #include <ipc/ bus.h>46 #include <ipc/irc.h> 47 47 #include <ipc/ns.h> 48 48 #include <sysinfo.h> … … 93 93 callid = async_get_call(&call); 94 94 switch (IPC_GET_IMETHOD(call)) { 95 case BUS_CLEAR_INTERRUPT: 95 case IRC_ENABLE_INTERRUPT: 96 /* Noop */ 97 ipc_answer_0(callid, EOK); 98 break; 99 case IRC_CLEAR_INTERRUPT: 96 100 inr = IPC_GET_ARG1(call); 97 101 base_virt[OBIO_CIR(inr & INO_MASK)] = 0; -
uspace/srv/hw/netif/ne2000/Makefile
reaef141 r80cd7cd 39 39 -include $(CONFIG_MAKEFILE) 40 40 41 BINARY = dp839041 BINARY = ne2000 42 42 43 43 SOURCES = \ 44 44 dp8390.c \ 45 dp8390_module.c \46 45 ne2000.c 47 46
Note:
See TracChangeset
for help on using the changeset viewer.