From patchwork Mon Sep 26 12:31:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 12988663 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 24069C07E9D for ; Mon, 26 Sep 2022 12:36:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:CC :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=7xoLMHqDLmMGcIihEDzdUt06iHD2gb6XqW1zaokpCt8=; b=f3zBqSwEzI4Uko ntog+JZ78noOT2mB9SC8YNZ95i5NsUlS2yK1BLI9RiSP9t8FpHErCsKKaO1xJeIgX9uB+h6d/GkNp bqSZPD+ik0/V1gRjo6nACAmV5rk40JaZQLNg18ZND8FNm8HMGXqnYtz4ZlmgslOp+pbTz/k528yN5 9hh1OzgedzE3nJLHsy39TcgQQ9DidumBhld8b1z6jOm7K68n2jMo5b4D0HoAmFUh82RTGsJ6zFVDd NNDYkco2MsUbX6oWBnF5KP5TevJ1pPHe74T1Rg2i06W0XpddzpJvAQY9jePRoFIevIexmtrv/VjTt +VyKDKvFBkxL57dXVobA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ocnKj-004p8l-Rm; Mon, 26 Sep 2022 12:35:37 +0000 Received: from szxga02-in.huawei.com ([45.249.212.188]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ocnKd-004p4o-9T for linux-arm-kernel@lists.infradead.org; Mon, 26 Sep 2022 12:35:34 +0000 Received: from kwepemi500008.china.huawei.com (unknown [172.30.72.55]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4MbhvG1mFtzWh6M; Mon, 26 Sep 2022 20:31:22 +0800 (CST) Received: from huawei.com (10.67.175.83) by kwepemi500008.china.huawei.com (7.221.188.139) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Mon, 26 Sep 2022 20:35:25 +0800 From: ruanjinjie To: , , , , CC: Subject: [PATCH -next] soc: fsl: dpio: Add __init/__exit annotations to module init/exit func Date: Mon, 26 Sep 2022 20:31:36 +0800 Message-ID: <20220926123136.1340026-1-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Originating-IP: [10.67.175.83] X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To kwepemi500008.china.huawei.com (7.221.188.139) X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220926_053531_546829_C6B1A9B7 X-CRM114-Status: UNSURE ( 8.51 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Add missing __init/__exit annotations to module init/exit funcs Signed-off-by: ruanjinjie --- drivers/soc/fsl/dpio/dpio-driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/soc/fsl/dpio/dpio-driver.c b/drivers/soc/fsl/dpio/dpio-driver.c index 5a2edc48dd79..534e91dd929c 100644 --- a/drivers/soc/fsl/dpio/dpio-driver.c +++ b/drivers/soc/fsl/dpio/dpio-driver.c @@ -326,7 +326,7 @@ static struct fsl_mc_driver dpaa2_dpio_driver = { .match_id_table = dpaa2_dpio_match_id_table }; -static int dpio_driver_init(void) +static int __init dpio_driver_init(void) { if (!zalloc_cpumask_var(&cpus_unused_mask, GFP_KERNEL)) return -ENOMEM; @@ -335,7 +335,7 @@ static int dpio_driver_init(void) return fsl_mc_driver_register(&dpaa2_dpio_driver); } -static void dpio_driver_exit(void) +static void __exit dpio_driver_exit(void) { free_cpumask_var(cpus_unused_mask); fsl_mc_driver_unregister(&dpaa2_dpio_driver);