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.web11.6429.1581037750397586779 for ; Thu, 06 Feb 2020 17:09:10 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=LaB7KN/D; 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=1581037749; 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=cy7v7VTmFYHswS4kiiLda6Ya4v39rIYayX3AM+G5A4c=; b=LaB7KN/DFFblVXo5IPxj+0Fd6QqulE9geT39ru5qmFaE91liIBeb67zVk82OJWYzuDcFwm rAnhQ3UkBvfwwYbkG3puGE9a+MERtAdxifmH9gVVmfKs23gmOFQC7ukkFNl+OFJNfib997 t75PDYG36Zh3JjqgkJWFANQhxlkuJ1M= 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-258-SAzbTeKLOyq_ufaEMDe9Ig-1; Thu, 06 Feb 2020 20:09:05 -0500 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id AE5CA1835A13; Fri, 7 Feb 2020 01:09:04 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-120.brq.redhat.com [10.40.204.120]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9F9CF5C1BB; Fri, 7 Feb 2020 01:09:03 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 18/78] MdeModulePkg/UsbBusDxe: Fix a typo Date: Fri, 7 Feb 2020 02:07:31 +0100 Message-Id: <20200207010831.9046-19-philmd@redhat.com> In-Reply-To: <20200207010831.9046-1-philmd@redhat.com> References: <20200207010831.9046-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-MC-Unique: SAzbTeKLOyq_ufaEMDe9Ig-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Correctly write 'malformatted'. Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Acked-by: Liming Gao Signed-off-by: Philippe Mathieu-Daude --- MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.c b/MdeModulePkg/Bus/Us= b/UsbBusDxe/UsbDesc.c index a64f33fde67a..008a592859aa 100644 --- a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.c +++ b/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.c @@ -398,7 +398,7 @@ UsbParseConfigDesc ( break; =20 } else if (Setting->Desc.InterfaceNumber >=3D NumIf) { - DEBUG (( EFI_D_ERROR, "UsbParseConfigDesc: mal-formated interface de= scriptor\n")); + DEBUG (( EFI_D_ERROR, "UsbParseConfigDesc: malformatted interface de= scriptor\n")); =20 UsbFreeInterfaceDesc (Setting); goto ON_ERROR; --=20 2.21.1