Changeset e6a78b9 in mainline for uspace/srv/hid/input/proto/mousedev.c
- Timestamp:
- 2012-06-29T15:31:44Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9432f08
- Parents:
- 34ab31c0 (diff), 0bbd13e (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/proto/mousedev.c
r34ab31c0 re6a78b9 117 117 printf("%s: Failed starting session with '%s'\n", NAME, 118 118 mdev->svc_name); 119 return -1;119 return ENOENT; 120 120 } 121 121 … … 125 125 NAME, mdev->svc_name); 126 126 async_hangup(sess); 127 return -1;127 return ENOMEM; 128 128 } 129 129 … … 134 134 mousedev_destroy(mousedev); 135 135 async_hangup(sess); 136 return -1;136 return ENOENT; 137 137 } 138 138 … … 145 145 NAME, mdev->svc_name); 146 146 mousedev_destroy(mousedev); 147 return -1;147 return rc; 148 148 } 149 149 150 return 0;150 return EOK; 151 151 } 152 152
Note:
See TracChangeset
for help on using the changeset viewer.