An error occurred fetching the project authors.
  1. 07 Jan, 2009 1 commit
    • Harvey Harrison's avatar
      USB: wusb: annotate association types withe proper endianness · d767d888
      Harvey Harrison authored
      Also a trivial annotation in rh.c for:
      drivers/usb/wusbcore/rh.c:366:9: warning: incorrect type in assignment (different base types)
      drivers/usb/wusbcore/rh.c:366:9:    expected unsigned short [unsigned] [short] [usertype] <noident>
      drivers/usb/wusbcore/rh.c:366:9:    got restricted __le16 [usertype] <noident>
      drivers/usb/wusbcore/rh.c:367:9: warning: incorrect type in assignment (different base types)
      drivers/usb/wusbcore/rh.c:367:9:    expected unsigned short [unsigned] [short] [usertype] <noident>
      drivers/usb/wusbcore/rh.c:367:9:    got restricted __le16 [usertype] <noident>
      
      Association types annotation fixes piles of warnings similar to:
      drivers/usb/wusbcore/cbaf.c:238:30: warning: incorrect type in initializer (different base types)
      drivers/usb/wusbcore/cbaf.c:238:30:    expected restricted __le16 [usertype] id
      drivers/usb/wusbcore/cbaf.c:238:30:    got int
      drivers/usb/wusbcore/cbaf.c:238:30: warning: incorrect type in initializer (different base types)
      drivers/usb/wusbcore/cbaf.c:238:30:    expected restricted __le16 [usertype] len
      drivers/usb/wusbcore/cbaf.c:238:30:    got int
      Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
      Cc: David Vrabel <david.vrabel@csr.com>
      Cc: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      d767d888
  2. 22 Dec, 2008 1 commit
  3. 28 Oct, 2008 1 commit
    • David Vrabel's avatar
      wusb: reset WUSB devices with SetAddress(0) · 4656d5de
      David Vrabel authored
      Using a Reset Device IE to reset a WUSB device is too heavyweight as it
      causes the devcie to disconnect (which the USB stack does not expect and
      cannot handle).  Instead, do a SetAddress(0); SetAddress(AuthAddr) for
      authenticated devices.
      
      Unauthenticated devices will not be reset and the stack will have to rely
      on the device timing out after TrustTimeout and disconnecting.
      Signed-off-by: default avatarDavid Vrabel <david.vrabel@csr.com>
      4656d5de
  4. 17 Sep, 2008 1 commit
    • Inaky Perez-Gonzalez's avatar
      wusb: add the Wireless USB core · 90ff96f2
      Inaky Perez-Gonzalez authored
      Add support for Ceritified Wireless USB 1.0 to the USB stack.
      
      This has been split into several patches for easier review.
      
      core (this patch):
        - host controller infrastructure
        - cluster reservation
        - UWB PAL registration
        - fake root hub
      
      protocol:
        - MMC management (start/stop, managing IEs)
        - device connection
      
      security:
        - device authentication and authorization
      
      build-system:
        - Kconfig and Kbuild files
      Signed-off-by: default avatarDavid Vrabel <david.vrabel@csr.com>
      90ff96f2