From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.120]) by mx.groups.io with SMTP id smtpd.web09.1845.1578042549401547003 for ; Fri, 03 Jan 2020 01:09:09 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=L5gQJ9HW; spf=pass (domain: redhat.com, ip: 205.139.110.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578042548; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JYUz2TQzwXlK6UMJS07WMa28Mz7I2pTlR4L14QzPYCU=; b=L5gQJ9HW9zJ2R+5ckOrPAP1DWM9aCNOyjDwbdnfhGJJ8qKbkBm6s0qw2ND5T1yRH6pEGSV lrg8KEr2JI9xK3Zp66K5mZETOuVzLY8pRVxb2mowMGByAt8TvD4I8583JLaAnNw7hS87e8 xnx3mZw6GuqXKgf2CYSJrxXtZuVbOgU= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-108-6FshS7u4Mk6ipPtUHZ5MJQ-1; Fri, 03 Jan 2020 04:09:06 -0500 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 74E2E800D48; Fri, 3 Jan 2020 09:09:05 +0000 (UTC) Received: from x1w.redhat.com (ovpn-116-190.ams2.redhat.com [10.36.116.190]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E35177BA25; Fri, 3 Jan 2020 09:09:03 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Antoine Coeur , Jian J Wang , Hao A Wu , Ray Ni , Philippe Mathieu-Daude Subject: [PATCH v2 20/78] MdeModulePkg/UsbMouse: Fix few typos Date: Fri, 3 Jan 2020 10:07:14 +0100 Message-Id: <20200103090812.10592-21-philmd@redhat.com> In-Reply-To: <20200103090812.10592-1-philmd@redhat.com> References: <20200103090812.10592-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-MC-Unique: 6FshS7u4Mk6ipPtUHZ5MJQ-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Antoine Coeur Fix few typos in comments and documentation. Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Signed-off-by: Philippe Mathieu-Daude --- .../Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointer.h | 2 +- MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.h | 2 +- MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/MouseHid.c | 2 +- .../Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointer.c | 2 +- MdeModulePkg/Bus/Usb/UsbMouseDxe/MouseHid.c | 2 +- MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolu= tePointer.h b/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsol= utePointer.h index f7fe480d0762..c9edc45e38a4 100644 --- a/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePoint= er.h +++ b/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePoint= er.h @@ -138,7 +138,7 @@ USBMouseAbsolutePointerDriverBindingSupported ( /** Starts the mouse device with this driver. =20 - This function consumes USB I/O Portocol, intializes USB mouse device, + This function consumes USB I/O Protocol, initializes USB mouse device, installs Absolute Pointer Protocol, and submits Asynchronous Interrupt Transfer to manage the USB mouse device. =20 diff --git a/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.h b/MdeModulePkg/Bus= /Usb/UsbMouseDxe/UsbMouse.h index b71ef829870a..f46069602f28 100644 --- a/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.h +++ b/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.h @@ -138,7 +138,7 @@ USBMouseDriverBindingSupported ( /** Starts the mouse device with this driver. =20 - This function consumes USB I/O Portocol, intializes USB mouse device, + This function consumes USB I/O Protocol, initializes USB mouse device, installs Simple Pointer Protocol, and submits Asynchronous Interrupt Transfer to manage the USB mouse device. =20 diff --git a/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/MouseHid.c b/M= deModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/MouseHid.c index d7805ad3de90..10e18e58ab45 100644 --- a/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/MouseHid.c +++ b/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/MouseHid.c @@ -22,7 +22,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent Only short item is supported here. =20 @param StartPos Start position of the HID item to get. - @param EndPos End position of the range to get the the next = HID item. + @param EndPos End position of the range to get the next HID = item. @param HidItem Buffer for the HID Item to return. =20 @return Pointer to end of the HID item returned. diff --git a/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolu= tePointer.c b/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsol= utePointer.c index 8953e7031cfc..83197bfd996f 100644 --- a/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePoint= er.c +++ b/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePoint= er.c @@ -109,7 +109,7 @@ USBMouseAbsolutePointerDriverBindingSupported ( /** Starts the mouse device with this driver. =20 - This function consumes USB I/O Portocol, intializes USB mouse device, + This function consumes USB I/O Protocol, initializes USB mouse device, installs Absolute Pointer Protocol, and submits Asynchronous Interrupt Transfer to manage the USB mouse device. =20 diff --git a/MdeModulePkg/Bus/Usb/UsbMouseDxe/MouseHid.c b/MdeModulePkg/Bus= /Usb/UsbMouseDxe/MouseHid.c index de44aec516e4..2b6d86030b26 100644 --- a/MdeModulePkg/Bus/Usb/UsbMouseDxe/MouseHid.c +++ b/MdeModulePkg/Bus/Usb/UsbMouseDxe/MouseHid.c @@ -22,7 +22,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent Only short item is supported here. =20 @param StartPos Start position of the HID item to get. - @param EndPos End position of the range to get the the next = HID item. + @param EndPos End position of the range to get the next HID = item. @param HidItem Buffer for the HID Item to return. =20 @return Pointer to end of the HID item returned. diff --git a/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.c b/MdeModulePkg/Bus= /Usb/UsbMouseDxe/UsbMouse.c index 677815a8ade3..8284e9ec80b9 100644 --- a/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.c +++ b/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.c @@ -109,7 +109,7 @@ USBMouseDriverBindingSupported ( /** Starts the mouse device with this driver. =20 - This function consumes USB I/O Portocol, intializes USB mouse device, + This function consumes USB I/O Protocol, initializes USB mouse device, installs Simple Pointer Protocol, and submits Asynchronous Interrupt Transfer to manage the USB mouse device. =20 --=20 2.21.0