From patchwork Mon Sep 26 12:25:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 12988657 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 A05DAC6FA83 for ; Mon, 26 Sep 2022 12:31:10 +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=ZsSC0q14BdLDB3 znh92vLFeH2HVWXgzOFpWXErzFMmgkl2X06M/qQPRuIg++xo4hdMUGDWaVlFAV5wsIuT9A53Wxnhl hoLB6UpejK1hokKsctXnTrX5SFWs+/8ecGEKmAI31vORNh/o4tymZtVfbNs0mtjH7lHOlxU4R92jY WTRBQahQp46c3595vAYjsFXxzdpJpttX89m8WKALA9kD4BIiRxeVKEwDExG+l18x3mSgSwZzrxDmP f57oAxAu7Cs1GXA1ENFMKsjXJ1fFRniGDONxeB5q+Cnqeiv3f0gnWFjj0I4neFGVCD5bGiWIGiB4t iZfE8r+NDMJJEcAx/1gA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ocnEu-004oQQ-6O; Mon, 26 Sep 2022 12:29:36 +0000 Received: from szxga08-in.huawei.com ([45.249.212.255]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ocnEq-004oPK-OR for linux-arm-kernel@lists.infradead.org; Mon, 26 Sep 2022 12:29:34 +0000 Received: from kwepemi500008.china.huawei.com (unknown [172.30.72.54]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4Mbhm341XGz1P6x8; Mon, 26 Sep 2022 20:25:07 +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:29:20 +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:25:27 +0800 Message-ID: <20220926122527.1338917-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: dggems704-chm.china.huawei.com (10.3.19.181) 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_052933_002699_ED372D97 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);