[edk2] [PATCH v2 13/14] OvmfPkg: Fix typos in comments

2016-07-07 Thread Giri P Mudusuru
  - accessibla to accessible
  - exeuction to execution

Cc: Jordan Justen 
Cc: Laszlo Ersek 
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Giri P Mudusuru 
---
 OvmfPkg/VirtioBlkDxe/VirtioBlk.c | 6 +++---
 OvmfPkg/VirtioBlkDxe/VirtioBlk.h | 4 ++--
 OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c | 4 ++--
 OvmfPkg/XenIoPciDxe/XenIoPciDxe.c| 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/OvmfPkg/VirtioBlkDxe/VirtioBlk.c b/OvmfPkg/VirtioBlkDxe/VirtioBlk.c
index f1c3f87..3ce7228 100644
--- a/OvmfPkg/VirtioBlkDxe/VirtioBlk.c
+++ b/OvmfPkg/VirtioBlkDxe/VirtioBlk.c
@@ -11,7 +11,7 @@
 synchronous requests and EFI_BLOCK_IO_PROTOCOL for now.
 
   Copyright (C) 2012, Red Hat, Inc.
-  Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved.
+  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.
 
   This program and the accompanying materials are licensed and made available
   under the terms and conditions of the BSD License which accompanies this
@@ -890,7 +890,7 @@ VirtioBlkExitBoot (
 
   After we've pronounced support for a specific device in
   DriverBindingSupported(), we start managing said device (passed in by the
-  Driver Exeuction Environment) with the following service.
+  Driver Execution Environment) with the following service.
 
   See DriverBindingSupported() for specification references.
 
@@ -905,7 +905,7 @@ VirtioBlkExitBoot (
 
   @retval EFI_SUCCESS   Driver instance has been created and
 initialized  for the virtio-blk device, it
-is now accessibla via EFI_BLOCK_IO_PROTOCOL.
+is now accessible via EFI_BLOCK_IO_PROTOCOL.
 
   @retval EFI_OUT_OF_RESOURCES  Memory allocation failed.
 
diff --git a/OvmfPkg/VirtioBlkDxe/VirtioBlk.h b/OvmfPkg/VirtioBlkDxe/VirtioBlk.h
index ca4b7a0..6c402ca 100644
--- a/OvmfPkg/VirtioBlkDxe/VirtioBlk.h
+++ b/OvmfPkg/VirtioBlkDxe/VirtioBlk.h
@@ -96,7 +96,7 @@ VirtioBlkDriverBindingSupported (
 
   After we've pronounced support for a specific device in
   DriverBindingSupported(), we start managing said device (passed in by the
-  Driver Exeuction Environment) with the following service.
+  Driver Execution Environment) with the following service.
 
   See DriverBindingSupported() for specification references.
 
@@ -111,7 +111,7 @@ VirtioBlkDriverBindingSupported (
 
   @retval EFI_SUCCESS   Driver instance has been created and
 initialized  for the virtio-blk device, it
-is now accessibla via EFI_BLOCK_IO_PROTOCOL.
+is now accessible via EFI_BLOCK_IO_PROTOCOL.
 
   @retval EFI_OUT_OF_RESOURCES  Memory allocation failed.
 
diff --git a/OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c 
b/OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c
index 25b06fc..bc4f6fe 100644
--- a/OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c
+++ b/OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c
@@ -3,7 +3,7 @@
   This driver produces Virtio Device Protocol instances for Virtio PCI devices.
 
   Copyright (C) 2012, Red Hat, Inc.
-  Copyright (c) 2012, Intel Corporation. All rights reserved.
+  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.
   Copyright (C) 2013, ARM Ltd.
 
   This program and the accompanying materials are licensed and made available
@@ -393,7 +393,7 @@ VirtioPciUninit (
 
   After we've pronounced support for a specific device in
   DriverBindingSupported(), we start managing said device (passed in by the
-  Driver Exeuction Environment) with the following service.
+  Driver Execution Environment) with the following service.
 
   See DriverBindingSupported() for specification references.
 
diff --git a/OvmfPkg/XenIoPciDxe/XenIoPciDxe.c 
b/OvmfPkg/XenIoPciDxe/XenIoPciDxe.c
index c205cf7..15803eb 100644
--- a/OvmfPkg/XenIoPciDxe/XenIoPciDxe.c
+++ b/OvmfPkg/XenIoPciDxe/XenIoPciDxe.c
@@ -3,7 +3,7 @@
   Driver for the virtual Xen PCI device
 
   Copyright (C) 2012, Red Hat, Inc.
-  Copyright (c) 2012, Intel Corporation. All rights reserved.
+  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.
   Copyright (C) 2013, ARM Ltd.
   Copyright (C) 2015, Linaro Ltd.
 
@@ -123,7 +123,7 @@ XenIoPciDeviceBindingSupported (
 
   After we've pronounced support for a specific device in
   DriverBindingSupported(), we start managing said device (passed in by the
-  Driver Exeuction Environment) with the following service.
+  Driver Execution Environment) with the following service.
 
   See DriverBindingSupported() for specification references.
 
-- 
2.9.0.windows.1

___
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel


Re: [edk2] [PATCH v2 13/14] OvmfPkg: Fix typos in comments

2016-07-08 Thread Laszlo Ersek
On 07/08/16 08:21, Giri P Mudusuru wrote:
>   - accessibla to accessible
>   - exeuction to execution
> 
> Cc: Jordan Justen 
> Cc: Laszlo Ersek 
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Giri P Mudusuru 
> ---
>  OvmfPkg/VirtioBlkDxe/VirtioBlk.c | 6 +++---
>  OvmfPkg/VirtioBlkDxe/VirtioBlk.h | 4 ++--
>  OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c | 4 ++--
>  OvmfPkg/XenIoPciDxe/XenIoPciDxe.c| 4 ++--
>  4 files changed, 9 insertions(+), 9 deletions(-)

Reviewed-by: Laszlo Ersek 

Commit 694673c9108f.

Thanks!
Laszlo


> diff --git a/OvmfPkg/VirtioBlkDxe/VirtioBlk.c 
> b/OvmfPkg/VirtioBlkDxe/VirtioBlk.c
> index f1c3f87..3ce7228 100644
> --- a/OvmfPkg/VirtioBlkDxe/VirtioBlk.c
> +++ b/OvmfPkg/VirtioBlkDxe/VirtioBlk.c
> @@ -11,7 +11,7 @@
>  synchronous requests and EFI_BLOCK_IO_PROTOCOL for now.
>  
>Copyright (C) 2012, Red Hat, Inc.
> -  Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved.
> +  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.
>  
>This program and the accompanying materials are licensed and made available
>under the terms and conditions of the BSD License which accompanies this
> @@ -890,7 +890,7 @@ VirtioBlkExitBoot (
>  
>After we've pronounced support for a specific device in
>DriverBindingSupported(), we start managing said device (passed in by the
> -  Driver Exeuction Environment) with the following service.
> +  Driver Execution Environment) with the following service.
>  
>See DriverBindingSupported() for specification references.
>  
> @@ -905,7 +905,7 @@ VirtioBlkExitBoot (
>  
>@retval EFI_SUCCESS   Driver instance has been created and
>  initialized  for the virtio-blk device, it
> -is now accessibla via EFI_BLOCK_IO_PROTOCOL.
> +is now accessible via EFI_BLOCK_IO_PROTOCOL.
>  
>@retval EFI_OUT_OF_RESOURCES  Memory allocation failed.
>  
> diff --git a/OvmfPkg/VirtioBlkDxe/VirtioBlk.h 
> b/OvmfPkg/VirtioBlkDxe/VirtioBlk.h
> index ca4b7a0..6c402ca 100644
> --- a/OvmfPkg/VirtioBlkDxe/VirtioBlk.h
> +++ b/OvmfPkg/VirtioBlkDxe/VirtioBlk.h
> @@ -96,7 +96,7 @@ VirtioBlkDriverBindingSupported (
>  
>After we've pronounced support for a specific device in
>DriverBindingSupported(), we start managing said device (passed in by the
> -  Driver Exeuction Environment) with the following service.
> +  Driver Execution Environment) with the following service.
>  
>See DriverBindingSupported() for specification references.
>  
> @@ -111,7 +111,7 @@ VirtioBlkDriverBindingSupported (
>  
>@retval EFI_SUCCESS   Driver instance has been created and
>  initialized  for the virtio-blk device, it
> -is now accessibla via EFI_BLOCK_IO_PROTOCOL.
> +is now accessible via EFI_BLOCK_IO_PROTOCOL.
>  
>@retval EFI_OUT_OF_RESOURCES  Memory allocation failed.
>  
> diff --git a/OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c 
> b/OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c
> index 25b06fc..bc4f6fe 100644
> --- a/OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c
> +++ b/OvmfPkg/VirtioPciDeviceDxe/VirtioPciDevice.c
> @@ -3,7 +3,7 @@
>This driver produces Virtio Device Protocol instances for Virtio PCI 
> devices.
>  
>Copyright (C) 2012, Red Hat, Inc.
> -  Copyright (c) 2012, Intel Corporation. All rights reserved.
> +  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.
>Copyright (C) 2013, ARM Ltd.
>  
>This program and the accompanying materials are licensed and made available
> @@ -393,7 +393,7 @@ VirtioPciUninit (
>  
>After we've pronounced support for a specific device in
>DriverBindingSupported(), we start managing said device (passed in by the
> -  Driver Exeuction Environment) with the following service.
> +  Driver Execution Environment) with the following service.
>  
>See DriverBindingSupported() for specification references.
>  
> diff --git a/OvmfPkg/XenIoPciDxe/XenIoPciDxe.c 
> b/OvmfPkg/XenIoPciDxe/XenIoPciDxe.c
> index c205cf7..15803eb 100644
> --- a/OvmfPkg/XenIoPciDxe/XenIoPciDxe.c
> +++ b/OvmfPkg/XenIoPciDxe/XenIoPciDxe.c
> @@ -3,7 +3,7 @@
>Driver for the virtual Xen PCI device
>  
>Copyright (C) 2012, Red Hat, Inc.
> -  Copyright (c) 2012, Intel Corporation. All rights reserved.
> +  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.
>Copyright (C) 2013, ARM Ltd.
>Copyright (C) 2015, Linaro Ltd.
>  
> @@ -123,7 +123,7 @@ XenIoPciDeviceBindingSupported (
>  
>After we've pronounced support for a specific device in
>DriverBindingSupported(), we start managing said device (passed in by the
> -  Driver Exeuction Environment) with the following service.
> +  Driver Execution Environment) with the following service.
>  
>See DriverBindingSupported() for specific