From patchwork Fri Nov 24 14:03:15 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Federico Serafini X-Patchwork-Id: 13467693 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A242BC61DF4 for ; Fri, 24 Nov 2023 14:05:00 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.640731.999366 (Exim 4.92) (envelope-from ) id 1r6WnU-0005NO-0I; Fri, 24 Nov 2023 14:04:44 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 640731.999366; Fri, 24 Nov 2023 14:04:43 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1r6WnT-0005NH-Ri; Fri, 24 Nov 2023 14:04:43 +0000 Received: by outflank-mailman (input) for mailman id 640731; Fri, 24 Nov 2023 14:04:42 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1r6WnS-0005N1-2b 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-flk1.inumbo.com (Halon) with ESMTPS id 68b2604b-8ad2-11ee-9b0e-b553b5be7939; Fri, 24 Nov 2023 15:04:40 +0100 (CET) Received: from Dell.bugseng.com (unknown [37.161.237.167]) by support.bugseng.com (Postfix) with ESMTPSA id 5ACF24EE073C; Fri, 24 Nov 2023 15:04:38 +0100 (CET) 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: 68b2604b-8ad2-11ee-9b0e-b553b5be7939 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 , Paul Durrant , =?utf-8?q?Roger_Pau_Monn?= =?utf-8?q?=C3=A9?= Subject: [XEN PATCH 00/11] xen: address violations of MISRA C:2012 Rule 8.2 Date: Fri, 24 Nov 2023 15:03:15 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 This patch series adds some of the missing parameter names. No functional changes are introduced. Federico Serafini (11): xen/console: address violations of MISRA C:2012 Rule 8.2 xen/aclinux: address violations of MISRA C:2012 Rule 8.2 xen/cpumask: address violations of MISRA C:2012 Rule 8.2 xen/dmi: address a violation of MISRA C:2012 Rule 8.2 xen/domain: address violations of MISRA C:2012 Rule 8.2 xen/notifier: address violations of MISRA C:2012 Rule 8.2 xen/iommu: address violations of MISRA C:2012 Rule 8.2 xen/kernel: address a violation of MISRA C:2012 Rule 8.2 xen/param: address a violation of MISRA C:2012 Rule 8.2 xen/perfc: address a violation of MISRA C:2012 Rule 8.2 xen/serial: address a violation of MISRA C:2012 Rule 8.2 xen/drivers/char/console.c | 4 ++-- xen/include/acpi/platform/aclinux.h | 6 +++--- xen/include/xen/console.h | 2 +- xen/include/xen/cpumask.h | 6 ++++-- xen/include/xen/dmi.h | 2 +- xen/include/xen/domain.h | 14 +++++++------- xen/include/xen/iommu.h | 13 +++++++------ xen/include/xen/kernel.h | 2 +- xen/include/xen/notifier.h | 3 ++- xen/include/xen/param.h | 2 +- xen/include/xen/perfc.h | 2 +- xen/include/xen/serial.h | 2 +- 12 files changed, 31 insertions(+), 27 deletions(-)