OSDN Git Service

hw/cxl/cxl-host: Fix an error message typo
authorHoa Nguyen <hoanguyen@ucdavis.edu>
Sun, 27 Nov 2022 03:22:20 +0000 (19:22 -0800)
committerLaurent Vivier <laurent@vivier.eu>
Tue, 17 Jan 2023 09:02:37 +0000 (10:02 +0100)
Signed-off-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20221127032220.2649-1-hoanguyen@ucdavis.edu>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
hw/cxl/cxl-host.c

index 1adf612..3c1ec87 100644 (file)
@@ -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;