Changeset 941
- Timestamp:
- 05/25/07 08:38:12 (5 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
-
ifd/init.c (modified) (1 diff)
-
ifd/sys-bsd.c (modified) (1 diff)
-
ifd/sys-linux.c (modified) (1 diff)
-
ifd/sys-solaris.c (modified) (1 diff)
-
ifd/sys-sunray.c (modified) (1 diff)
-
tools/openct-control.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ifd/init.c
r832 r941 62 62 ct_config.ifdhandler = sval; 63 63 64 /* Register all driver information (us uhotplug ids) */64 /* Register all driver information (use hotplug ids) */ 65 65 n = ifd_conf_get_nodes("driver", NULL, 0); 66 66 if (n >= 0) { -
trunk/src/ifd/sys-bsd.c
r914 r941 377 377 device_info.udi_productNo); 378 378 379 /* FIXME: if we don't find a driver with vendor/product 380 * then check for the interface type (ccid) and use 381 * driver ccid... */ 382 379 383 if (!(driver = ifd_driver_for_id(&id))) 380 384 continue; -
trunk/src/ifd/sys-linux.c
r930 r941 405 405 id.val[1] = dev->descriptor.idProduct; 406 406 407 /* FIXME: if we don't find a driver with vendor/product 408 * then check for the interface type (ccid) and use 409 * driver ccid... */ 410 407 411 if (!(driver = ifd_driver_for_id(&id))) 408 412 continue; -
trunk/src/ifd/sys-solaris.c
r914 r941 552 552 id.val[1] = product; 553 553 554 /* FIXME: if we don't find a driver with vendor/product 555 * then check for the interface type (ccid) and use 556 * driver ccid... */ 557 554 558 if (!(driver = ifd_driver_for_id(&id))) 555 559 continue; -
trunk/src/ifd/sys-sunray.c
r914 r941 326 326 id.val[1] = dev->descriptor.idProduct; 327 327 328 /* FIXME: if we don't find a driver with vendor/product 329 * then check for the interface type (ccid) and use 330 * driver ccid... */ 331 328 332 if (!(driver = ifd_driver_for_id(&id))) 329 333 continue; -
trunk/src/tools/openct-control.c
r916 r941 191 191 192 192 if (!(driver = ifd_driver_for_id(&id))) { 193 fprintf(stderr, "No driver for this device\n");194 return 1;193 /* fall back to ccid driver */ 194 driver = "ccid"; 195 195 } 196 196 }
Note: See TracChangeset
for help on using the changeset viewer.
