Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp535844imu; Mon, 26 Nov 2018 14:35:51 -0800 (PST) X-Google-Smtp-Source: AJdET5ft0StQ6jt5niZHvU17ckphUTjSmqt8ea/LeENaCiaQWdudZB/q1KPxVJNKVFL+jJt/5uJa X-Received: by 2002:a62:4587:: with SMTP id n7mr29807622pfi.118.1543271750977; Mon, 26 Nov 2018 14:35:50 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1543271750; cv=none; d=google.com; s=arc-20160816; b=dekdGppRjha0K7POqzO3hZ34pf+dmgkNl+4nAoRWknzZIJNkUUwXCDiQQQolrb8mk/ JtlVC3EJ3Ol/sYG5vsYLgdwFWAa5b9stp1HP6tNJLveIeG0MWMwfXjAp9UtO8DP8GZor T5e0juh5/BTSgt9acak+TLyuKbOwxVk2BqceHcoeJl380KN3OiSJYQU/96Sg47gpDfbY fQWaGCoqPB6k8azlvo4+IqkWzgTLtI+yrCs45MUjLlYsYEkAQhgNyogLr2Vc3pTnM2UQ LmHVomhUI1p64r6GkAveCed/On6IcIAJzWkE38mC46kw8QksY0Kq5XhG18LCNr1OrlN+ 4ZFA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from; bh=mWlORoPzhWho9VBVbfENkgqfjYbm2ftM0gr1CPc0ZjY=; b=ddUd2354IR9C0+gdkBXC/Yc2NaJx2X+LgpLu44eGRVISxW+IwX+gL2BuGdiVCoqcbt /VSQGkjkRtCEGNCr8skzVVmWaDGm0Zebu4q7Waf3wofdQ/j6oTZSz4xuHnaZTnKKB3LV BjgsWXBoOJ9NVQbsCsL6MIDM4nVJJRERhSt7Q79ycQi9gIleKLc/P36AG0aT2dKb9oks k2PHmwvbyhRw4fGahjt/LitzP38Y0uwLdMg1jHVnSIXqgSQ7Had5CoxCwMRxopBB4tUP iW0kh0GFggdCA5Tf+yfYGyxluTDcBLsC37NqMnHT4ZWr4lA1VIaOxt2P+9Z5B6mYGdHZ 94tg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d17si1744988pfm.40.2018.11.26.14.35.35; Mon, 26 Nov 2018 14:35:50 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727482AbeK0J3x (ORCPT + 99 others); Tue, 27 Nov 2018 04:29:53 -0500 Received: from mail5.windriver.com ([192.103.53.11]:59806 "EHLO mail5.wrs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726513AbeK0J3x (ORCPT ); Tue, 27 Nov 2018 04:29:53 -0500 Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail5.wrs.com (8.15.2/8.15.2) with ESMTPS id wAQMVvq1002166 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL); Mon, 26 Nov 2018 14:33:31 -0800 Received: from yow-cube1.wrs.com (128.224.56.98) by ALA-HCA.corp.ad.wrs.com (147.11.189.40) with Microsoft SMTP Server id 14.3.408.0; Mon, 26 Nov 2018 14:33:26 -0800 From: Paul Gortmaker To: Joerg Roedel CC: , , Paul Gortmaker , Stepan Moskovchenko Subject: [PATCH 3/9] iommu: msm_iommu: make it explicitly non-modular Date: Mon, 26 Nov 2018 17:31:32 -0500 Message-ID: <1543271498-28966-4-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1543271498-28966-1-git-send-email-paul.gortmaker@windriver.com> References: <1543271498-28966-1-git-send-email-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Kconfig currently controlling compilation of this code is: drivers/iommu/Kconfig:config MSM_IOMMU drivers/iommu/Kconfig: bool "MSM IOMMU Support" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned, so that when reading the driver there is no doubt it is builtin-only. Since module_init was not even used by this driver, the init ordering remains unchanged with this commit. We also delete the MODULE_LICENSE tag etc. since all that information was (or is now) contained at the top of the file in the comments. Cc: Joerg Roedel Cc: Stepan Moskovchenko Cc: iommu@lists.linux-foundation.org Signed-off-by: Paul Gortmaker --- drivers/iommu/msm_iommu.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/drivers/iommu/msm_iommu.c b/drivers/iommu/msm_iommu.c index fc5f0b53adaf..fc4270733f11 100644 --- a/drivers/iommu/msm_iommu.c +++ b/drivers/iommu/msm_iommu.c @@ -1,5 +1,7 @@ /* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. * + * Author: Stepan Moskovchenko + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. @@ -17,7 +19,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include -#include +#include #include #include #include @@ -861,14 +863,5 @@ static int __init msm_iommu_driver_init(void) return ret; } - -static void __exit msm_iommu_driver_exit(void) -{ - platform_driver_unregister(&msm_iommu_driver); -} - subsys_initcall(msm_iommu_driver_init); -module_exit(msm_iommu_driver_exit); -MODULE_LICENSE("GPL v2"); -MODULE_AUTHOR("Stepan Moskovchenko "); -- 2.7.4