From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.61]) by mx.groups.io with SMTP id smtpd.web12.6815.1581039657462106967 for ; Thu, 06 Feb 2020 17:40:57 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=hU4//oZl; spf=pass (domain: redhat.com, ip: 205.139.110.61, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581039656; 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=nw/uOH6BHzTJj5+i5qBQE6WcSVG3+UvBb6oBeojLAD0=; b=hU4//oZlGPOU/ktNI/aog6OOdssVzNd0LqPFslvA+FyhWnUEw2dhdFAXwGRhh5zzQYzeSW k2Ehy/tw/WUupH5Wikm6ml8rD5nWEb0Fj+oCFbSuL3usuVM/vMZ8qRRD2YrWvNNyTI1mhq DHbP5/txrq1mqlwXH9JbyDaWhBB1umE= 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-318-TF0Qz8_QNwSn1Ai0mFJFKw-1; Thu, 06 Feb 2020 20:40:54 -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 A8CB98024D7; Fri, 7 Feb 2020 01:40:53 +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 9B7895C241; Fri, 7 Feb 2020 01:40:52 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 53/78] NetworkPkg/VlanConfigDxe: Fix few typos Date: Fri, 7 Feb 2020 02:08:06 +0100 Message-Id: <20200207010831.9046-54-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: TF0Qz8_QNwSn1Ai0mFJFKw-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Antoine Coeur Correctly write 'EFI_SUCCESS' in the documentation. Cc: Jiaxin Wu Cc: Siyuan Fu Cc: Maciej Rabeda Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Reviewed-by: Maciej Rabeda Signed-off-by: Philippe Mathieu-Daude --- NetworkPkg/VlanConfigDxe/VlanConfigImpl.h | 6 +++--- NetworkPkg/VlanConfigDxe/VlanConfigDriver.c | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NetworkPkg/VlanConfigDxe/VlanConfigImpl.h b/NetworkPkg/VlanCon= figDxe/VlanConfigImpl.h index 14f99c03b7d0..2f1f17e6ef95 100644 --- a/NetworkPkg/VlanConfigDxe/VlanConfigImpl.h +++ b/NetworkPkg/VlanConfigDxe/VlanConfigImpl.h @@ -185,7 +185,7 @@ VlanConfigComponentNameGetControllerName ( @param[in] RemainingDevicePath Optional parameter use to pick a specif= ic child device to start. =20 - @retval EFI_SUCCES This driver supports this device + @retval EFI_SUCCESS This driver supports this device @retval EFI_ALREADY_STARTED This driver is already running on this devi= ce @retval other This driver does not support this device =20 @@ -206,7 +206,7 @@ VlanConfigDriverBindingSupported ( @param[in] RemainingDevicePath Optional parameter use to pick a specif= ic child device to start. =20 - @retval EFI_SUCCES This driver is added to ControllerHandle + @retval EFI_SUCCESS This driver is added to ControllerHandle @retval EFI_ALREADY_STARTED This driver is already running on Controlle= rHandle @retval other This driver does not support this device =20 @@ -228,7 +228,7 @@ VlanConfigDriverBindingStart ( of children is zero stop the entire bus= driver. @param[in] ChildHandleBuffer List of Child Handles to Stop. =20 - @retval EFI_SUCCES This driver is removed ControllerHandle + @retval EFI_SUCCESS This driver is removed ControllerHandle @retval other This driver was not removed from this devic= e =20 **/ diff --git a/NetworkPkg/VlanConfigDxe/VlanConfigDriver.c b/NetworkPkg/VlanC= onfigDxe/VlanConfigDriver.c index c717d9ea523c..ae636b763f93 100644 --- a/NetworkPkg/VlanConfigDxe/VlanConfigDriver.c +++ b/NetworkPkg/VlanConfigDxe/VlanConfigDriver.c @@ -24,7 +24,7 @@ EFI_DRIVER_BINDING_PROTOCOL gVlanConfigDriverBinding =3D = { @param[in] ImageHandle The image handle of the driver. @param[in] SystemTable The system table. =20 - @retval EFI_SUCCES All the related protocols are installed o= n the driver. + @retval EFI_SUCCESS All the related protocols are installed o= n the driver. @retval Others Failed to install protocols. =20 **/ @@ -54,7 +54,7 @@ VlanConfigDriverEntryPoint ( @param[in] RemainingDevicePath Optional parameter use to pick a specif= ic child device to start. =20 - @retval EFI_SUCCES This driver supports this device + @retval EFI_SUCCESS This driver supports this device @retval EFI_ALREADY_STARTED This driver is already running on this devi= ce @retval other This driver does not support this device =20 @@ -104,7 +104,7 @@ VlanConfigDriverBindingSupported ( @param[in] RemainingDevicePath Optional parameter use to pick a specif= ic child device to start. =20 - @retval EFI_SUCCES This driver is added to ControllerHandle + @retval EFI_SUCCESS This driver is added to ControllerHandle @retval EFI_ALREADY_STARTED This driver is already running on Controlle= rHandle @retval other This driver does not support this device =20 @@ -236,7 +236,7 @@ VlanConfigDriverBindingStart ( of children is zero stop the entire bus= driver. @param[in] ChildHandleBuffer List of Child Handles to Stop. =20 - @retval EFI_SUCCES This driver is removed ControllerHandle + @retval EFI_SUCCESS This driver is removed ControllerHandle @retval other This driver was not removed from this devic= e =20 **/ --=20 2.21.1