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.8108.1575389859544351983 for ; Tue, 03 Dec 2019 08:17:39 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=WeJ1C9vo; 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=1575389858; 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=i+zdbU4PK/Ff9aD9xZC3lLo9PuLFBDijjsAhAiMUzBU=; b=WeJ1C9vowsqmV9dr4LUXizdxVwd/iShIJVbo84haB2ITGjOL+Lzs8v7z76fpcNQxIuD4t+ H0UjXXRtqxN6TakAjQ2/ZvW7VuFHs3LVzBR+17WYERF7g24jHj1UmrPiZt1QnrJZg42F5L LBzc2nSRKRhCMIicT2VKDiqE0Ok7PEI= 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-286-Ye7lO-wnN6mEVaiz4lYoQg-1; Tue, 03 Dec 2019 11:17:34 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 0C137107ACC4; Tue, 3 Dec 2019 16:17:33 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-86.brq.redhat.com [10.40.204.86]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 156F660C80; Tue, 3 Dec 2019 16:17:30 +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 22/79] MdeModulePkg/UsbMouse: Fix few typos Date: Tue, 3 Dec 2019 17:15:05 +0100 Message-Id: <20191203161602.15969-23-philmd@redhat.com> In-Reply-To: <20191203161602.15969-1-philmd@redhat.com> References: <20191203161602.15969-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: Ye7lO-wnN6mEVaiz4lYoQg-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: Philippe Mathieu-Daude --- MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointer.h = | 2 +- MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouse.h = | 2 +- MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/MouseHid.c = | 2 +- MdeModulePkg/Bus/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