Changeset f658458 in mainline for uspace/lib/libdrv/generic/driver.c
- Timestamp:
- 2010-05-02T20:49:09Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bb864a0
- Parents:
- 25a7e11d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libdrv/generic/driver.c
r25a7e11d rf658458 254 254 if (!is_valid_iface_idx(iface_idx)) { 255 255 // this is not device's interface 256 printf("%s: driver_connection_gen error - invalid interface id % x.", driver->name, method);256 printf("%s: driver_connection_gen error - invalid interface id %d.", driver->name, iface_idx); 257 257 ipc_answer_0(callid, ENOTSUP); 258 258 break; … … 265 265 if (NULL == iface) { 266 266 printf("%s: driver_connection_gen error - ", driver->name); 267 printf("device with handle % x has no interface with id %x.\n", handle, method);267 printf("device with handle %d has no interface with id %d.\n", handle, iface_idx); 268 268 ipc_answer_0(callid, ENOTSUP); 269 269 break;
Note:
See TracChangeset
for help on using the changeset viewer.