Skip to content

Commit 2a34514

Browse files
Menno Lagemanvivier
authored andcommitted
intel_iommu: "aw-bits" error message still refers to "x-aw-bits"
Commit 4b49b58 ('intel_iommu: remove "x-" prefix for "aw-bits"') removed the "x-" prefix but but didn't update the error message accordingly. Signed-off-by: Menno Lageman <[email protected]> Reviewed-by: Laurent Vivier <[email protected]> Message-Id: <[email protected]> Signed-off-by: Laurent Vivier <[email protected]>
1 parent 8f4d955 commit 2a34514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hw/i386/intel_iommu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3758,7 +3758,7 @@ static bool vtd_decide_config(IntelIOMMUState *s, Error **errp)
37583758
/* Currently only address widths supported are 39 and 48 bits */
37593759
if ((s->aw_bits != VTD_HOST_AW_39BIT) &&
37603760
(s->aw_bits != VTD_HOST_AW_48BIT)) {
3761-
error_setg(errp, "Supported values for x-aw-bits are: %d, %d",
3761+
error_setg(errp, "Supported values for aw-bits are: %d, %d",
37623762
VTD_HOST_AW_39BIT, VTD_HOST_AW_48BIT);
37633763
return false;
37643764
}

0 commit comments

Comments
 (0)