Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp2870254imu; Sun, 13 Jan 2019 12:04:03 -0800 (PST) X-Google-Smtp-Source: ALg8bN6atLfQvaP1z3nVOqGLzZXwzd796nPT7psSJc8vdoO+KY1zOgT8gw6qSQdhZNOLOcomYwYh X-Received: by 2002:a17:902:8bc6:: with SMTP id r6mr22632071plo.67.1547409843572; Sun, 13 Jan 2019 12:04:03 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1547409843; cv=none; d=google.com; s=arc-20160816; b=fpSdUs7Xj9tOYrQdlvvGJs+VDn6V9sAK2sm/TyGGXhqqDhGbCYE8ditWvqVv5Dppoz abFGnQGr0YbelhTmVqYZbEhtZCezDAAI6xWMu7zExl9kGkh6kG/zEf8N8Bqv/BSsFM6g IXtDxFezjZVD/YsxpwBrpA+xlXT+5Wimz63HcfV5Qd6rgIUrnH8jY8bZSGKF45gr1cZh pK2B7aV9IRvaL9LqTiNj78hWCKxC3hb9OT9S9ILoV7w3wvJ+ycQ57wv4SMxyKWS12Fht N76BoAshl9hgBnYH3hPAzVUS4NvO6AkkQiS3b3pUZ9btPPmFx2i0+rxX7kikvBMQAAlK 7hdw== 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=vdeGJxrPR1EtTAWuuHu5vu6jAUVAqMF7aVXOS9RhzuI=; b=bmZJCXsegnBil8m+ToooAELyRzeWN/174CiiRc0r4ScwX8JFvKDAMSfUnim2JQxaJv MCHG81T9EdWk2kvB3K/B2vOyTA8zWO+0ZQ0MnK3rcqec8H+Cmd6A7iRNkK60fZgzoqKP GfzcMEFGGE6aWyowZWpCRxTbsCsWniO18klONMYo5qXVtZjCoAJxI+EHUlCD2Vt7rveG 5DpV4CFf6q8gifv4Y/izcQUiKv/xBfuesA3EoS2akhicBKgAMDqm1ozjN3W9ZrFvXTD7 nUd58n9aPiD8irfEXLJ7ph91EadKkpNOUComrVKzAArNcsYMsWTXCTSEauMKbziaezXw uhvw== 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 w5si27009996plp.208.2019.01.13.12.03.48; Sun, 13 Jan 2019 12:04:03 -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 S1726874AbfAMUBZ (ORCPT + 99 others); Sun, 13 Jan 2019 15:01:25 -0500 Received: from mail1.windriver.com ([147.11.146.13]:50247 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726546AbfAMUAF (ORCPT ); Sun, 13 Jan 2019 15:00:05 -0500 Received: from ALA-HCA.corp.ad.wrs.com ([147.11.189.40]) by mail1.windriver.com (8.15.2/8.15.1) with ESMTPS id x0DIditq026191 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL); Sun, 13 Jan 2019 10:39:44 -0800 (PST) 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; Sun, 13 Jan 2019 10:39:44 -0800 From: Paul Gortmaker To: Lee Jones CC: , Paul Gortmaker , Subject: [PATCH 14/18] mfd: wm831x-i2c: Make it explicitly non-modular Date: Sun, 13 Jan 2019 13:36:45 -0500 Message-ID: <1547404609-14161-15-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1547404609-14161-1-git-send-email-paul.gortmaker@windriver.com> References: <1547404609-14161-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/mfd/Kconfig:config MFD_WM831X_I2C drivers/mfd/Kconfig: bool "Wolfson Microelectronics WM831x/2x PMICs with I2C" ...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. We explicitly disallow a driver unbind, since that doesn't have a sensible use case anyway, and it allows us to drop the ".remove" code for non-modular drivers. Since module_init was not in use by this code, the init ordering remains unchanged with this commit. Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code. Cc: Lee Jones Cc: patches@opensource.cirrus.com Signed-off-by: Paul Gortmaker Acked-by: Linus Walleij Acked-by: Charles Keepax --- drivers/mfd/wm831x-i2c.c | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/drivers/mfd/wm831x-i2c.c b/drivers/mfd/wm831x-i2c.c index 22f7054d1b28..0f3af42f7268 100644 --- a/drivers/mfd/wm831x-i2c.c +++ b/drivers/mfd/wm831x-i2c.c @@ -13,7 +13,7 @@ */ #include -#include +#include #include #include #include @@ -68,15 +68,6 @@ static int wm831x_i2c_probe(struct i2c_client *i2c, return wm831x_device_init(wm831x, i2c->irq); } -static int wm831x_i2c_remove(struct i2c_client *i2c) -{ - struct wm831x *wm831x = i2c_get_clientdata(i2c); - - wm831x_device_exit(wm831x); - - return 0; -} - static int wm831x_i2c_suspend(struct device *dev) { struct wm831x *wm831x = dev_get_drvdata(dev); @@ -103,7 +94,6 @@ static const struct i2c_device_id wm831x_i2c_id[] = { { "wm8326", WM8326 }, { } }; -MODULE_DEVICE_TABLE(i2c, wm831x_i2c_id); static const struct dev_pm_ops wm831x_pm_ops = { .suspend = wm831x_i2c_suspend, @@ -115,9 +105,9 @@ static struct i2c_driver wm831x_i2c_driver = { .name = "wm831x", .pm = &wm831x_pm_ops, .of_match_table = of_match_ptr(wm831x_of_match), + .suppress_bind_attrs = true, }, .probe = wm831x_i2c_probe, - .remove = wm831x_i2c_remove, .id_table = wm831x_i2c_id, }; @@ -132,9 +122,3 @@ static int __init wm831x_i2c_init(void) return ret; } subsys_initcall(wm831x_i2c_init); - -static void __exit wm831x_i2c_exit(void) -{ - i2c_del_driver(&wm831x_i2c_driver); -} -module_exit(wm831x_i2c_exit); -- 2.7.4