trezorhal: fix typos

This commit is contained in:
Pavol Rusnak 2018-02-02 17:41:30 +01:00
parent ea6763c4ec
commit 61b4e3d6e3
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
3 changed files with 5 additions and 2 deletions

View File

@ -91,7 +91,7 @@ static void usb_init_all(void)
.device_protocol = 0x01, // Interface Association Descriptor .device_protocol = 0x01, // Interface Association Descriptor
.vendor_id = 0x1209, .vendor_id = 0x1209,
.product_id = 0x53C1, .product_id = 0x53C1,
.release_num = 0x0300, .release_num = 0x0400,
.manufacturer = "SatoshiLabs", .manufacturer = "SatoshiLabs",
.product = "TREZOR", .product = "TREZOR",
.serial_number = "000000000000", .serial_number = "000000000000",

View File

@ -64,7 +64,7 @@ void usb_init(const usb_dev_info_t *dev_info) {
// Device descriptor // Device descriptor
usb_dev_desc.bLength = sizeof(usb_device_descriptor_t); usb_dev_desc.bLength = sizeof(usb_device_descriptor_t);
usb_dev_desc.bDescriptorType = USB_DESC_TYPE_DEVICE; usb_dev_desc.bDescriptorType = USB_DESC_TYPE_DEVICE;
usb_dev_desc.bcdUSB = (sectrue == usb21_enabled) ? 0x0210 : 0x2000; // USB 2.1 or USB 2.0 usb_dev_desc.bcdUSB = (sectrue == usb21_enabled) ? 0x0210 : 0x0200; // USB 2.1 or USB 2.0
usb_dev_desc.bDeviceClass = dev_info->device_class; usb_dev_desc.bDeviceClass = dev_info->device_class;
usb_dev_desc.bDeviceSubClass = dev_info->device_subclass; usb_dev_desc.bDeviceSubClass = dev_info->device_subclass;
usb_dev_desc.bDeviceProtocol = dev_info->device_protocol; usb_dev_desc.bDeviceProtocol = dev_info->device_protocol;

View File

@ -340,6 +340,9 @@ static void USBD_GetDescriptor(USBD_HandleTypeDef *pdev ,
#if (USBD_LPM_ENABLED == 1) #if (USBD_LPM_ENABLED == 1)
case USB_DESC_TYPE_BOS: case USB_DESC_TYPE_BOS:
pbuf = pdev->pDesc->GetBOSDescriptor(pdev->dev_speed, &len); pbuf = pdev->pDesc->GetBOSDescriptor(pdev->dev_speed, &len);
if (!pbuf) {
USBD_CtlError(pdev , req);
}
break; break;
#endif #endif
case USB_DESC_TYPE_DEVICE: case USB_DESC_TYPE_DEVICE: