From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@yandex.ru header.s=mail header.b=PWgrysb6; spf=pass (domain: yandex.ru, ip: 77.88.28.109, mailfrom: gris87@yandex.ru) Received: from forward106p.mail.yandex.net (forward106p.mail.yandex.net [77.88.28.109]) by groups.io with SMTP; Wed, 18 Sep 2019 00:33:41 -0700 Received: from mxback10j.mail.yandex.net (mxback10j.mail.yandex.net [IPv6:2a02:6b8:0:1619::113]) by forward106p.mail.yandex.net (Yandex) with ESMTP id 266651C80CBB for ; Wed, 18 Sep 2019 10:33:38 +0300 (MSK) Received: from myt4-6a59ac13d093.qloud-c.yandex.net (myt4-6a59ac13d093.qloud-c.yandex.net [2a02:6b8:c12:88f:0:640:6a59:ac13]) by mxback10j.mail.yandex.net (nwsmtp/Yandex) with ESMTP id ICmWi03JBs-Xba4Ijtn; Wed, 18 Sep 2019 10:33:38 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1568792018; bh=wIPnhcPYswEl0f5eGNQ8l2yaHTgfjEnBEJjRzw9mqEw=; h=Subject:To:From:Message-Id:Cc:Date; b=PWgrysb6A4iZAwTL6oDwNqi9arzYSEi2ST933kFRmJSY8KJab7XffQ6MxRghbPVsJ cGaWwBLD6wV64m0crvxoJkvwdiqO5mQ/b3hlnK3eDDHM0Vc1w0Zu1G7nI4IAX1r0hM BFbbV6rTFRYpBuUzTCpHr64fCITkb9WPseb9V8c4= Authentication-Results: mxback10j.mail.yandex.net; dkim=pass header.i=@yandex.ru Received: by myt4-6a59ac13d093.qloud-c.yandex.net (nwsmtp/Yandex) with ESMTPSA id cKNTCyIkQ8-XbqSBHSV; Wed, 18 Sep 2019 10:33:37 +0300 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client certificate not present) From: gris87@yandex.ru To: devel@edk2.groups.io Cc: Gris87 Subject: [PATCH] MdePkg: Changes in comments Date: Wed, 18 Sep 2019 07:33:20 +0000 Message-Id: X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Simple changes for comments... Signed-off-by: Gris87 --- MdePkg/Include/Protocol/AbsolutePointer.h | 12 ++++++------ MdePkg/Include/Protocol/SimplePointer.h | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/MdePkg/Include/Protocol/AbsolutePointer.h b/MdePkg/Include/P= rotocol/AbsolutePointer.h index 77d34ae5bd..90c9664dbd 100644 --- a/MdePkg/Include/Protocol/AbsolutePointer.h +++ b/MdePkg/Include/Protocol/AbsolutePointer.h @@ -33,14 +33,14 @@ typedef struct _EFI_ABSOLUTE_POINTER_PROTOCOL EFI_ABS= OLUTE_POINTER_PROTOCOL; **/ typedef struct { UINT64 AbsoluteMinX; ///< The Absolute Minimum of the device on the x-= axis - UINT64 AbsoluteMinY; ///< The Absolute Minimum of the device on the y = axis. + UINT64 AbsoluteMinY; ///< The Absolute Minimum of the device on the y-= axis UINT64 AbsoluteMinZ; ///< The Absolute Minimum of the device on the z-= axis UINT64 AbsoluteMaxX; ///< The Absolute Maximum of the device on the x-= axis. If 0, and the - ///< AbsoluteMinX is 0, then the pointer device d= oes not support a xaxis - UINT64 AbsoluteMaxY; ///< The Absolute Maximum of the device on the y = -axis. If 0, and the - ///< AbsoluteMinX is 0, then the pointer device d= oes not support a yaxis. - UINT64 AbsoluteMaxZ; ///< The Absolute Maximum of the device on the z-= axis. If 0 , and the - ///< AbsoluteMinX is 0, then the pointer device d= oes not support a zaxis + ///< AbsoluteMinX is 0, then the pointer device d= oes not support a x-axis + UINT64 AbsoluteMaxY; ///< The Absolute Maximum of the device on the y-= axis. If 0, and the + ///< AbsoluteMinY is 0, then the pointer device d= oes not support a y-axis + UINT64 AbsoluteMaxZ; ///< The Absolute Maximum of the device on the z-= axis. If 0, and the + ///< AbsoluteMinZ is 0, then the pointer device d= oes not support a z-axis UINT32 Attributes; ///< The following bits are set as needed (or'd t= ogether) to indicate the ///< capabilities of the device supported. The re= maining bits are undefined ///< and should be 0 diff --git a/MdePkg/Include/Protocol/SimplePointer.h b/MdePkg/Include/Pro= tocol/SimplePointer.h index 2f5a940ff9..a63028cb80 100644 --- a/MdePkg/Include/Protocol/SimplePointer.h +++ b/MdePkg/Include/Protocol/SimplePointer.h @@ -54,12 +54,12 @@ typedef struct { UINT64 ResolutionX; /// /// The resolution of the pointer device on the y-axis in counts/mm. - /// If 0, then the pointer device does not support an x-axis. + /// If 0, then the pointer device does not support an y-axis. /// UINT64 ResolutionY; /// /// The resolution of the pointer device on the z-axis in counts/mm. - /// If 0, then the pointer device does not support an x-axis. + /// If 0, then the pointer device does not support an z-axis. /// UINT64 ResolutionZ; /// --=20 2.19.1