2013-09-03 19:01:17 +00:00
|
|
|
From cede7cafc7b0056c44446468463eabbc89d4da2c Mon Sep 17 00:00:00 2001
|
2013-08-18 10:25:16 +00:00
|
|
|
From: Alon Levy <alevy@redhat.com>
|
|
|
|
Date: Tue, 5 Mar 2013 15:31:26 +0200
|
2013-09-03 19:01:17 +00:00
|
|
|
Subject: [PATCH] dev-smartcard-reader: reuse usb.h definitions
|
2013-08-18 10:25:16 +00:00
|
|
|
MIME-Version: 1.0
|
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
|
|
|
|
Signed-off-by: Alon Levy <alevy@redhat.com>
|
|
|
|
Reviewed-by: Marc-André Lureau <mlureau@redhat.com>
|
|
|
|
(cherry picked from commit 693e47738d05463b2743b0a652412d33cf254977)
|
|
|
|
---
|
|
|
|
hw/usb/dev-smartcard-reader.c | 16 +++++-----------
|
|
|
|
1 file changed, 5 insertions(+), 11 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/hw/usb/dev-smartcard-reader.c b/hw/usb/dev-smartcard-reader.c
|
|
|
|
index db5dd6d..75f813c 100644
|
|
|
|
--- a/hw/usb/dev-smartcard-reader.c
|
|
|
|
+++ b/hw/usb/dev-smartcard-reader.c
|
|
|
|
@@ -68,12 +68,6 @@ do { \
|
|
|
|
#define BULK_IN_BUF_SIZE 384
|
|
|
|
#define BULK_IN_PENDING_NUM 8
|
|
|
|
|
|
|
|
-#define InterfaceOutClass \
|
|
|
|
- ((USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE)<<8)
|
|
|
|
-
|
|
|
|
-#define InterfaceInClass \
|
|
|
|
- ((USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE)<<8)
|
|
|
|
-
|
|
|
|
#define CCID_MAX_PACKET_SIZE 64
|
|
|
|
|
|
|
|
#define CCID_CONTROL_ABORT 0x1
|
|
|
|
@@ -410,8 +404,8 @@ static const USBDescStrings desc_strings = {
|
|
|
|
static const USBDescIface desc_iface0 = {
|
|
|
|
.bInterfaceNumber = 0,
|
|
|
|
.bNumEndpoints = 3,
|
|
|
|
- .bInterfaceClass = 0x0b,
|
|
|
|
- .bInterfaceSubClass = 0x00,
|
|
|
|
+ .bInterfaceClass = USB_CLASS_CSCID,
|
|
|
|
+ .bInterfaceSubClass = USB_SUBCLASS_UNDEFINED,
|
|
|
|
.bInterfaceProtocol = 0x00,
|
|
|
|
.iInterface = STR_INTERFACE,
|
|
|
|
.ndesc = 1,
|
|
|
|
@@ -687,15 +681,15 @@ static void ccid_handle_control(USBDevice *dev, USBPacket *p, int request,
|
|
|
|
|
|
|
|
switch (request) {
|
|
|
|
/* Class specific requests. */
|
|
|
|
- case InterfaceOutClass | CCID_CONTROL_ABORT:
|
|
|
|
+ case ClassInterfaceOutRequest | CCID_CONTROL_ABORT:
|
|
|
|
DPRINTF(s, 1, "ccid_control abort UNIMPLEMENTED\n");
|
|
|
|
p->status = USB_RET_STALL;
|
|
|
|
break;
|
|
|
|
- case InterfaceInClass | CCID_CONTROL_GET_CLOCK_FREQUENCIES:
|
|
|
|
+ case ClassInterfaceRequest | CCID_CONTROL_GET_CLOCK_FREQUENCIES:
|
|
|
|
DPRINTF(s, 1, "ccid_control get clock frequencies UNIMPLEMENTED\n");
|
|
|
|
p->status = USB_RET_STALL;
|
|
|
|
break;
|
|
|
|
- case InterfaceInClass | CCID_CONTROL_GET_DATA_RATES:
|
|
|
|
+ case ClassInterfaceRequest | CCID_CONTROL_GET_DATA_RATES:
|
|
|
|
DPRINTF(s, 1, "ccid_control get data rates UNIMPLEMENTED\n");
|
|
|
|
p->status = USB_RET_STALL;
|
|
|
|
break;
|