diff mbox

[4/7] usb-uvc: fix some spelling issues.

Message ID 1306993270-24144-5-git-send-email-bradh@frogmouth.net
State New
Headers show

Commit Message

Brad Hards June 2, 2011, 5:41 a.m. UTC
Signed-off-by: Brad Hards <bradh@frogmouth.net>
---
 hw/usb-uvc.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
diff mbox

Patch

diff --git a/hw/usb-uvc.c b/hw/usb-uvc.c
index 20ac23e..5437a13 100644
--- a/hw/usb-uvc.c
+++ b/hw/usb-uvc.c
@@ -487,7 +487,7 @@  static int usb_uvc_handle_control(USBDevice *dev, USBPacket *p, int request,
         } else if (((index & 0xFF00) == 0x0500) &&
                     ((value & 0xFF00) == 0x0200)) {
             /* PU_BRIGHTNESS_CONTROL of PROCESSING_UNIT */
-            DPRINTF("USB Resquest: Asking for current brightness\n");
+            DPRINTF("USB Request: Asking for current brightness\n");
             if (length != 2) {
                 DPRINTF("USB Request: Requested %d bytes, expected 2 "
                         "bytes\n", length);
@@ -555,7 +555,7 @@  static int usb_uvc_handle_control(USBDevice *dev, USBPacket *p, int request,
             ret = 1;
         } else if ((index&0xFF00) == 0x0500 && (value&0xFF00) == 0x0200) {
             /* PU_BRIGHTNESS_CONTROL of PROCESSING_UNIT */
-            DPRINTF("USB Resquest: Asking for minimum brightness\n");
+            DPRINTF("USB Request: Asking for minimum brightness\n");
             if (length != 2) {
                 DPRINTF("USB Request: Requested %d bytes, expected 2 "
                         "bytes\n", length);
@@ -622,7 +622,7 @@  static int usb_uvc_handle_control(USBDevice *dev, USBPacket *p, int request,
             ret = 1;
         } else if ((index&0xFF00) == 0x0500 && (value&0xFF00) == 0x0200) {
             /* PU_BRIGHTNESS_CONTROL of PROCESSING_UNIT */
-            DPRINTF("USB Resquest: Asking for maximum brightness\n");
+            DPRINTF("USB Request: Asking for maximum brightness\n");
             if (length != 2) {
                 DPRINTF("USB Request: Requested %d bytes, expected 2 "
                         "bytes\n", length);
@@ -688,7 +688,7 @@  static int usb_uvc_handle_control(USBDevice *dev, USBPacket *p, int request,
             ret = 1;
         } else if ((index&0xFF00) == 0x0500 && (value&0xFF00) == 0x0200) {
             /* PU_BRIGHTNESS_CONTROL of PROCESSING_UNIT */
-            DPRINTF("USB Resquest: Asking for default brightness\n");
+            DPRINTF("USB Request: Asking for default brightness\n");
             if (length != 2) {
                 DPRINTF("USB Request: Requested %d bytes, expected 2 "
                         "bytes\n", length);
@@ -770,7 +770,7 @@  static int usb_uvc_handle_control(USBDevice *dev, USBPacket *p, int request,
     case UVCGetVideoControl | USB_UVC_GET_RES:
         if ((index&0xFF00) == 0x0500 && (value&0xFF00) == 0x0200) {
             /* PU_BRIGHTNESS_CONTROL of PROCESSING_UNIT */
-            DPRINTF("USB Resquest: Asking for brightness resolution\n");
+            DPRINTF("USB Request: Asking for brightness resolution\n");
             if (length != 2) {
                 DPRINTF("USB Request: Requested %d bytes, "
                         "expected 2 bytes\n", length);