From patchwork Fri Oct 13 15:24:30 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Federico Serafini X-Patchwork-Id: 13421009 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 209A2CDB485 for ; Fri, 13 Oct 2023 15:25:17 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.616661.958821 (Exim 4.92) (envelope-from ) id 1qrK21-0002kw-TF; Fri, 13 Oct 2023 15:24:53 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 616661.958821; Fri, 13 Oct 2023 15:24:53 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1qrK21-0002kp-Px; Fri, 13 Oct 2023 15:24:53 +0000 Received: by outflank-mailman (input) for mailman id 616661; Fri, 13 Oct 2023 15:24:53 +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 1qrK21-0002kj-54 for xen-devel@lists.xenproject.org; Fri, 13 Oct 2023 15:24:53 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-flk1.inumbo.com (Halon) with ESMTPS id a70f1d37-69dc-11ee-9b0e-b553b5be7939; Fri, 13 Oct 2023 17:24:51 +0200 (CEST) Received: from Dell.bugseng.com (unknown [37.161.222.93]) by support.bugseng.com (Postfix) with ESMTPSA id 982AB4EE073A; Fri, 13 Oct 2023 17:24:49 +0200 (CEST) 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: a70f1d37-69dc-11ee-9b0e-b553b5be7939 From: Federico Serafini To: xen-devel@lists.xenproject.org Cc: consulting@bugseng.com, Federico Serafini , Stefano Stabellini , Julien Grall , Bertrand Marquis , Volodymyr Babchuk , Rahul Singh , Henry Wang Subject: [XEN PATCH 00/10] arm: address some violations of MISRA C:2012 Rule 8.2 Date: Fri, 13 Oct 2023 17:24:30 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 This patch series addresses some of the violations of Rule 8.2 adding the missing parameter names. Federico Serafini (10): arm/gic: address violations of MISRA C:2012 Rule 8.2 arm/cpufeature: address violations of MISRA C:2012 Rule 8.2 arm/smpboot: address violations of MISRA C:2012 Rule 8.2 arm/setup: address violations of MISRA C:2012 Rule 8.2 arm/p2m: address a violation of MISRA C:2012 Rule 8.2 arm/cmpxchg: address violations of MISRA C:2012 Rule 8.2 arm/traps: address a violation of MISRA C:2012 Rule 8.2 arm/vgic-v3: address a violation of MISRA C:2012 Rule 8.2 arm/domain: address violations of MISRA C:2012 Rule 8.2 arm/smmu: address violation of MISRA C:2012 Rule 8.2 xen/arch/arm/arm64/smpboot.c | 2 +- xen/arch/arm/include/asm/arm32/cmpxchg.h | 2 +- xen/arch/arm/include/asm/arm64/cmpxchg.h | 2 +- xen/arch/arm/include/asm/cpufeature.h | 8 ++++---- xen/arch/arm/include/asm/domain.h | 4 ++-- xen/arch/arm/include/asm/gic.h | 12 ++++++------ xen/arch/arm/include/asm/p2m.h | 2 +- xen/arch/arm/include/asm/setup.h | 5 +++-- xen/arch/arm/setup.c | 4 ++-- xen/arch/arm/traps.c | 2 +- xen/arch/arm/vgic-v3.c | 2 +- xen/drivers/passthrough/arm/smmu.c | 6 +++--- 12 files changed, 26 insertions(+), 25 deletions(-)