diff mbox series

hw/cxl/cxl-host: Fix an error message typo

Message ID 20221127032220.2649-1-hoanguyen@ucdavis.edu
State New
Headers show
Series hw/cxl/cxl-host: Fix an error message typo | expand

Commit Message

Hoa Nguyen Nov. 27, 2022, 3:22 a.m. UTC
Signed-off-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
---
 hw/cxl/cxl-host.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Philippe Mathieu-Daudé Nov. 27, 2022, 9 p.m. UTC | #1
On 27/11/22 04:22, Hoa Nguyen wrote:
> Signed-off-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
> ---
>   hw/cxl/cxl-host.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Laurent Vivier Jan. 16, 2023, 6:16 p.m. UTC | #2
Le 27/11/2022 à 04:22, Hoa Nguyen a écrit :
> Signed-off-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
> ---
>   hw/cxl/cxl-host.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/cxl/cxl-host.c b/hw/cxl/cxl-host.c
> index 1adf61231a..3c1ec8732a 100644
> --- a/hw/cxl/cxl-host.c
> +++ b/hw/cxl/cxl-host.c
> @@ -47,7 +47,7 @@ static void cxl_fixed_memory_window_config(CXLState *cxl_state,
>   
>       if (object->size % (256 * MiB)) {
>           error_setg(errp,
> -                   "Size of a CXL fixed memory window must my a multiple of 256MiB");
> +                   "Size of a CXL fixed memory window must be a multiple of 256MiB");
>           return;
>       }
>       fw->size = object->size;

Applied to my trivial-patches branch.

Thanks,
Laurent
diff mbox series

Patch

diff --git a/hw/cxl/cxl-host.c b/hw/cxl/cxl-host.c
index 1adf61231a..3c1ec8732a 100644
--- a/hw/cxl/cxl-host.c
+++ b/hw/cxl/cxl-host.c
@@ -47,7 +47,7 @@  static void cxl_fixed_memory_window_config(CXLState *cxl_state,
 
     if (object->size % (256 * MiB)) {
         error_setg(errp,
-                   "Size of a CXL fixed memory window must my a multiple of 256MiB");
+                   "Size of a CXL fixed memory window must be a multiple of 256MiB");
         return;
     }
     fw->size = object->size;