~ubuntu-branches/ubuntu/trusty/argyll/trusty-proposed

« back to all changes in this revision

Viewing changes to libusbw/src/driver/set_feature.c

  • Committer: Package Import Robot
  • Author(s): Artur Rona
  • Date: 2014-02-12 00:35:39 UTC
  • mfrom: (13.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20140212003539-24tautzlitsiz61w
Tags: 1.5.1-5ubuntu1
* Merge from Debian unstable. (LP: #1275572) Remaining changes:
  - debian/control:
    + Build-depend on libtiff-dev rather than libtiff4-dev.
  - debian/control, debian/patches/06_fix_udev_rule.patch:
    + Fix udev rules to actually work; ENV{ACL_MANAGE} has
      stopped working ages ago, and with logind it's now the
      "uaccess" tag. Dropping also consolekit from Recommends.
  - debian/patches/drop-usb-db.patch:
    + Use hwdb builtin, instead of the obsolete usb-db
      in the udev rules.
* debian/patches/05_ftbfs-underlinkage.diff:
  - Dropped change, no needed anymore.
* Refresh the patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* LIBUSB-WIN32, Generic Windows USB Library
2
 
 * Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify
5
 
 * it under the terms of the GNU General Public License as published by
6
 
 * the Free Software Foundation; either version 2 of the License, or
7
 
 * (at your option) any later version.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program; if not, write to the Free Software
16
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
 */
18
 
 
19
 
 
20
 
#include "libusb_driver.h"
21
 
 
22
 
 
23
 
 
24
 
NTSTATUS set_feature(libusb_device_t *dev, int recipient, int index, 
25
 
                     int feature, int timeout)
26
 
{
27
 
  NTSTATUS status = STATUS_SUCCESS;
28
 
  URB urb;
29
 
 
30
 
  DEBUG_PRINT_NL();
31
 
  DEBUG_MESSAGE("set_feature(): recipient %02d", recipient);
32
 
  DEBUG_MESSAGE("set_feature(): index %04d", index);
33
 
  DEBUG_MESSAGE("set_feature(): feature %04d", feature);
34
 
  DEBUG_MESSAGE("set_feature(): timeout %d", timeout);
35
 
 
36
 
  memset(&urb, 0, sizeof(struct _URB_CONTROL_FEATURE_REQUEST));
37
 
 
38
 
  switch(recipient)
39
 
    {
40
 
    case USB_RECIP_DEVICE:
41
 
      urb.UrbHeader.Function = URB_FUNCTION_SET_FEATURE_TO_DEVICE;
42
 
      break;
43
 
    case USB_RECIP_INTERFACE:
44
 
      urb.UrbHeader.Function = URB_FUNCTION_SET_FEATURE_TO_INTERFACE;
45
 
      break;
46
 
    case USB_RECIP_ENDPOINT:
47
 
      urb.UrbHeader.Function = URB_FUNCTION_SET_FEATURE_TO_ENDPOINT;
48
 
      break;
49
 
    case USB_RECIP_OTHER:
50
 
      urb.UrbHeader.Function = URB_FUNCTION_SET_FEATURE_TO_OTHER;
51
 
      urb.UrbControlFeatureRequest.Index = 0; 
52
 
      break;
53
 
    default:
54
 
      DEBUG_ERROR("set_feature(): invalid recipient");
55
 
      return STATUS_INVALID_PARAMETER;
56
 
    }
57
 
  
58
 
  urb.UrbHeader.Length = sizeof(struct _URB_CONTROL_FEATURE_REQUEST);
59
 
  urb.UrbControlFeatureRequest.FeatureSelector = (USHORT)feature;
60
 
  urb.UrbControlFeatureRequest.Index = (USHORT)index; 
61
 
  
62
 
  status = call_usbd(dev, &urb, IOCTL_INTERNAL_USB_SUBMIT_URB, timeout);
63
 
  
64
 
  if(!NT_SUCCESS(status) || !USBD_SUCCESS(urb.UrbHeader.Status))
65
 
    {
66
 
      DEBUG_ERROR("set_feature(): setting feature failed: status: 0x%x, "
67
 
                  "urb-status: 0x%x", status, urb.UrbHeader.Status);
68
 
    }
69
 
  
70
 
  return status;
71
 
}