From b292ce565f03acec55dde9be3ceb338960e991e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Wild?= Date: Wed, 14 Jan 2026 13:58:35 +0100 Subject: [PATCH] ap_tools/ap-check: Fix typo AQPN -> APQN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: André Wild Reviewed-by: Matthew Rosato Signed-off-by: Jan Höppner --- ap_tools/ap-check.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ap_tools/ap-check.c b/ap_tools/ap-check.c index 420293a6..d3d4e55b 100644 --- a/ap_tools/ap-check.c +++ b/ap_tools/ap-check.c @@ -303,11 +303,11 @@ static void conflict_error(const char *uuid, unsigned int a, unsigned int d, } } else { if (persistent) { - fprintf(stderr, "AQPN %u.%u is not defined for " + fprintf(stderr, "APQN %u.%u is not defined for " "vfio_ap-passthrough use by the persistent " "ap bus mask settings\n", a, d); } else { - fprintf(stderr, "AQPN %u.%u is not allowed for " + fprintf(stderr, "APQN %u.%u is not allowed for " "vfio_ap-passthrough use by the active ap " "bus mask settings\n", a, d); } @@ -531,7 +531,7 @@ out: * Determine if there are any conflicts between the specified device and * the apmask/aqmask settings stored in udev. This is done by treating * the masks as a temporary vfio_ap_device with all of the associated - * AQPNs owned by the system. + * APQNs owned by the system. */ static int check_cfg_mask_conflicts(struct ap_check_anchor *anc) {