Changeset 914


Ignore:
Timestamp:
11/14/06 09:11:48 (6 years ago)
Author:
aj
Message:

ad mising usb_reset implementtions. unfortunatly solaris and bsd
don't know how to do that, I'm told.

Location:
trunk/src/ifd
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ifd/sys-bsd.c

    r901 r914  
    316316} 
    317317 
     318int ifd_sysdep_usb_reset(ifd_device_t * dev) 
     319{ 
     320        /* not implemented so far */ 
     321        return -1; 
     322} 
     323 
    318324/* 
    319325 * Scan all usb devices to see if there is one we support 
  • trunk/src/ifd/sys-null.c

    r893 r914  
    9999} 
    100100 
     101int ifd_sysdep_usb_reset(ifd_device_t * dev) 
     102{ 
     103        return -1; 
     104} 
     105 
    101106/* 
    102107 * Scan all usb devices to see if there is one we support 
  • trunk/src/ifd/sys-osx.c

    r893 r914  
    8989} 
    9090 
     91int ifd_sysdep_usb_reset(const char *device) 
     92{ 
     93        return -1; 
     94} 
     95 
    9196/* 
    9297 * Scan all usb devices to see if there is one we support 
  • trunk/src/ifd/sys-solaris.c

    r893 r914  
    505505} 
    506506 
     507int ifd_sysdep_usb_reset(ifd_device_t * dev) 
     508{ 
     509        /* not implemented so far */ 
     510        return -1; 
     511} 
     512 
    507513/* 
    508514 * Scan the /dev/usb directory to see if there is any control pipe matching: 
  • trunk/src/ifd/sys-sunray.c

    r893 r914  
    297297} 
    298298 
     299int ifd_sysdep_usb_reset(ifd_device_t * dev) 
     300{ 
     301        /* not implemented so far */ 
     302        return -1; 
     303} 
     304 
    299305/* 
    300306 * Scan all usb devices to see if there is one we support 
Note: See TracChangeset for help on using the changeset viewer.