mirror of https://github.com/xemu-project/xemu.git
hw/cxl/cxl-host: Fix an error message typo
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>
This commit is contained in:
parent
f0376c3f0f
commit
f99ad11cd1
|
@ -47,7 +47,7 @@ static void cxl_fixed_memory_window_config(CXLState *cxl_state,
|
||||||
|
|
||||||
if (object->size % (256 * MiB)) {
|
if (object->size % (256 * MiB)) {
|
||||||
error_setg(errp,
|
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;
|
return;
|
||||||
}
|
}
|
||||||
fw->size = object->size;
|
fw->size = object->size;
|
||||||
|
|
Loading…
Reference in New Issue