From nobody Sun Feb 8 23:58:58 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1700834753923167.7122982093665; Fri, 24 Nov 2023 06:05:53 -0800 (PST) Received: from list by lists.xenproject.org with outflank-mailman.640732.999372 (Exim 4.92) (envelope-from ) id 1r6WnU-0005Qq-90; Fri, 24 Nov 2023 14:04:44 +0000 Received: by outflank-mailman (output) from mailman id 640732.999372; Fri, 24 Nov 2023 14:04:44 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1r6WnU-0005PS-2w; Fri, 24 Nov 2023 14:04:44 +0000 Received: by outflank-mailman (input) for mailman id 640732; Fri, 24 Nov 2023 14:04:42 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1r6WnS-0005N0-Ea for xen-devel@lists.xenproject.org; Fri, 24 Nov 2023 14:04:42 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id 693b14e9-8ad2-11ee-98e2-6d05b1d4d9a1; Fri, 24 Nov 2023 15:04:41 +0100 (CET) Received: from Dell.bugseng.com (unknown [37.161.237.167]) by support.bugseng.com (Postfix) with ESMTPSA id DE3034EE0C8B; Fri, 24 Nov 2023 15:04:39 +0100 (CET) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 693b14e9-8ad2-11ee-98e2-6d05b1d4d9a1 From: Federico Serafini To: xen-devel@lists.xenproject.org Cc: consulting@bugseng.com, Federico Serafini , Andrew Cooper , George Dunlap , Jan Beulich , Julien Grall , Stefano Stabellini , Wei Liu Subject: [XEN PATCH 01/11] xen/console: address violations of MISRA C:2012 Rule 8.2 Date: Fri, 24 Nov 2023 15:03:16 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1700834754403100001 Content-Type: text/plain; charset="utf-8" Add missing parameter names. No functional change. Signed-off-by: Federico Serafini Acked-by: Jan Beulich --- xen/drivers/char/console.c | 4 ++-- xen/include/xen/console.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xen/drivers/char/console.c b/xen/drivers/char/console.c index 946af5e625..0666564ec9 100644 --- a/xen/drivers/char/console.c +++ b/xen/drivers/char/console.c @@ -393,9 +393,9 @@ long read_console_ring(struct xen_sysctl_readconsole *o= p) static char serial_rx_ring[SERIAL_RX_SIZE]; static unsigned int serial_rx_cons, serial_rx_prod; =20 -static void (*serial_steal_fn)(const char *, size_t nr) =3D early_puts; +static void (*serial_steal_fn)(const char *str, size_t nr) =3D early_puts; =20 -int console_steal(int handle, void (*fn)(const char *, size_t nr)) +int console_steal(int handle, void (*fn)(const char *str, size_t nr)) { if ( (handle =3D=3D -1) || (handle !=3D sercon_handle) ) return 0; diff --git a/xen/include/xen/console.h b/xen/include/xen/console.h index ab5c30c0da..68759862e8 100644 --- a/xen/include/xen/console.h +++ b/xen/include/xen/console.h @@ -36,7 +36,7 @@ struct domain *console_input_domain(void); * Steal output from the console. Returns +ve identifier, else -ve error. * Takes the handle of the serial line to steal, and steal callback functi= on. */ -int console_steal(int handle, void (*fn)(const char *, size_t nr)); +int console_steal(int handle, void (*fn)(const char *str, size_t nr)); =20 /* Give back stolen console. Takes the identifier returned by console_stea= l. */ void console_giveback(int id); --=20 2.34.1