From patchwork Thu Jul 27 16:10:10 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Federico Serafini X-Patchwork-Id: 13330341 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 2F50EC001E0 for ; Thu, 27 Jul 2023 16:10:41 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.571222.894562 (Exim 4.92) (envelope-from ) id 1qP3ZF-0008IB-KN; Thu, 27 Jul 2023 16:10:21 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 571222.894562; Thu, 27 Jul 2023 16:10:21 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1qP3ZF-0008I4-H4; Thu, 27 Jul 2023 16:10:21 +0000 Received: by outflank-mailman (input) for mailman id 571222; Thu, 27 Jul 2023 16:10:20 +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 1qP3ZE-0008Hy-PB for xen-devel@lists.xenproject.org; Thu, 27 Jul 2023 16:10:20 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id 14c99a2c-2c98-11ee-b24a-6b7b168915f2; Thu, 27 Jul 2023 18:10:19 +0200 (CEST) Received: from Dell.bugseng.com (unknown [37.161.207.213]) by support.bugseng.com (Postfix) with ESMTPSA id 99D754EE073F; Thu, 27 Jul 2023 18:10:17 +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: 14c99a2c-2c98-11ee-b24a-6b7b168915f2 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] xen/notifier: address violations of MISRA C:2012 Rule 8.3 Date: Thu, 27 Jul 2023 18:10:10 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Change parameter names in function declarations to be consistent with the corresponding definitions. This addesses violations of MISRA C:2012 Rule 8.3: "All declarations of an object or function shall use the same names and type qualifiers". No functional changes. Signed-off-by: Federico Serafini Reviewed-by: Stefano Stabellini --- xen/include/xen/notifier.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/include/xen/notifier.h b/xen/include/xen/notifier.h index 3d6017d4f7..51453c1552 100644 --- a/xen/include/xen/notifier.h +++ b/xen/include/xen/notifier.h @@ -37,9 +37,9 @@ struct notifier_head { void notifier_chain_register( - struct notifier_head *nh, struct notifier_block *nb); + struct notifier_head *nh, struct notifier_block *n); void notifier_chain_unregister( - struct notifier_head *nh, struct notifier_block *nb); + struct notifier_head *nh, struct notifier_block *n); int notifier_call_chain( struct notifier_head *nh, unsigned long val, void *v,